Open
Description
Checklist
- I have searched for similar issues.
- For Python issues, I have tested with the latest development wheel.
- I have checked the release documentation and the latest documentation (for
main
branch).
Proposed new feature or change
The CreateFromPointCloudPoisson
has a whole range of arguments that are hardcoded in the Execute
function.
float datax = 32.f;
int base_depth = 0;
int base_v_cycles = 1;
float confidence = 0.f;
float point_weight = 2.f * DEFAULT_FEM_DEGREE;
float confidence_bias = 0.f;
float samples_per_node = 1.5f;
float cg_solver_accuracy = 1e-3f;
int full_depth = 5;
int iters = 8;
bool exact_interpolation = false;
It would be useful for fine tuning to expose these arguments.
If this is of interest, I can prepare a pull request.
References
No response
Additional information
Related to #6095