CGAL 6.0 - Scale-Space Surface Reconstruction
|
Concept describing a meshing algorithm used to produce the output mesh of the scale space reconstruction algorithm.
A mesher is a functor that can be applied to a range of points and that returns a set of facets.
Public Member Functions | |
template<typename InputIterator , typename OutputIterator > | |
void | operator() (InputIterator begin, InputIterator end, OutputIterator output) |
void CGAL::Scale_space_reconstruction_3::Mesher::operator() | ( | InputIterator | begin, |
InputIterator | end, | ||
OutputIterator | output | ||
) |
InputIterator | iterator over input points. |
OutputIterator | output iterator to which std::array<std::size_t, 3> can be assigned. |
begin | iterator over the first input point. |
end | past-the-end iterator over the input points. |
output | iterator where facets (triples of point indices) are stored. |