-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Description
Issue Details
Poisson block within: https://gist.github.com/MaelRL/556ebb65988da8b4ca722c33f6dd6a9f
- The output is inside-out
- I had to change the block:
Mesh_domain domain = Mesh_domain::create_Poisson_mesh_domain(function, Sphere(inner_point, sm_sphere_radius),
CGAL::parameters::relative_error_bound(sm_dichotomy_error / sm_sphere_radius));in Poisson_surface_reconstruction_3/include/CGAL/poisson_surface_reconstruction.h to use bsphere as bounding sphere (which is what is done in the example actually):
Mesh_domain domain = Mesh_domain::create_Poisson_mesh_domain(function, bpshere,
CGAL::parameters::relative_error_bound(sm_dichotomy_error / sm_sphere_radius));otherwise the output as holes.
Environment
"main" branch