- the value of \( \delta \)
- Type: double
- Default: Value iteratively estimated, as described in Parameter Settings
|
CGAL 6.2 - Ball Merge Surface Reconstruction
|
Classes | |
| class | CGAL::Ball_merge_surface_reconstruction< Traits, ConcurrencyTag > |
| This class provides an interface for executing ball merge surface reconstruction algorithms. More... | |
Functions | |
| template<class NamedParameters = parameters::Default_named_parameters, class PointRange , class TripleIndexRange > | |
| double | CGAL::ball_merge_surface_reconstruction (const PointRange &points, TripleIndexRange &out_triangles1, TripleIndexRange &out_triangles2, const NamedParameters &np=parameters::default_values()) |
generates two meshes approximating the input surface and stores the resulting triangle faces in out_triangles1 and out_triangles2 | |
| double CGAL::ball_merge_surface_reconstruction | ( | const PointRange & | points, |
| TripleIndexRange & | out_triangles1, | ||
| TripleIndexRange & | out_triangles2, | ||
| const NamedParameters & | np = parameters::default_values() |
||
| ) |
#include <CGAL/Ball_merge_surface_reconstruction.h>
generates two meshes approximating the input surface and stores the resulting triangle faces in out_triangles1 and out_triangles2
Precondition
This function constructs two shells (outer and inner). Therefore, the input point set must sample a single connected component.
Output Format
Each triangle face is represented as a triplet of indices referring to the positions of the corresponding input points in points.
| PointRange | a model of the concepts RandomAccessContainer |
| TripleIndexRange | a model of BackInsertionSequence with value_type being a model of RandomAccessContainer and BackInsertionSequence with value_type being constructible from std::size_t. |
| points | is the input points representing a single connected component of a watertight surface |
| out_triangles1 | is the output parameter storing the first resulting mesh |
| out_triangles2 | is the output parameter storing the second resulting mesh |
| np | an optional sequence of Named Parameters among the ones listed below |
| |
| |
|