CGAL 6.1.3 - Scale-Space Surface Reconstruction
Loading...
Searching...
No Matches
CGAL::Scale_space_reconstruction_3::Mesher Concept Reference

Definition

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.

Has models
CGAL::Scale_space_reconstruction_3::Alpha_shape_mesher
CGAL::Scale_space_reconstruction_3::Advancing_front_mesher

Public Member Functions

template<typename InputIterator, typename OutputIterator>
void operator() (InputIterator begin, InputIterator end, OutputIterator output)

Member Function Documentation

◆ operator()()

template<typename InputIterator, typename OutputIterator>
void CGAL::Scale_space_reconstruction_3::Mesher::operator() ( InputIterator begin,
InputIterator end,
OutputIterator output )
Template Parameters
InputIteratoriterator over input points.
OutputIteratoroutput iterator to which std::array<std::size_t, 3> can be assigned.
Parameters
beginiterator over the first input point.
endpast-the-end iterator over the input points.
outputiterator where facets (triples of point indices) are stored.

#include <Concepts/ScaleSpaceMesher.h>

Definition

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.

Has models
CGAL::Scale_space_reconstruction_3::Alpha_shape_mesher
CGAL::Scale_space_reconstruction_3::Advancing_front_mesher

Public Member Functions

template<typename InputIterator, typename OutputIterator>
void operator() (InputIterator begin, InputIterator end, OutputIterator output)

Member Function Documentation

◆ operator()()

template<typename InputIterator, typename OutputIterator>
void CGAL::Scale_space_reconstruction_3::Mesher::operator() ( InputIterator begin,
InputIterator end,
OutputIterator output )
Template Parameters
InputIteratoriterator over input points.
OutputIteratoroutput iterator to which std::array<std::size_t, 3> can be assigned.
Parameters
beginiterator over the first input point.
endpast-the-end iterator over the input points.
outputiterator where facets (triples of point indices) are stored.