\( \newcommand{\E}{\mathrm{E}} \) \( \newcommand{\A}{\mathrm{A}} \) \( \newcommand{\R}{\mathrm{R}} \) \( \newcommand{\N}{\mathrm{N}} \) \( \newcommand{\Q}{\mathrm{Q}} \) \( \newcommand{\Z}{\mathrm{Z}} \) \( \def\ccSum #1#2#3{ \sum_{#1}^{#2}{#3} } \def\ccProd #1#2#3{ \sum_{#1}^{#2}{#3} }\)
CGAL 4.12.1 - Scale-Space Surface Reconstruction
CGAL::Scale_space_reconstruction_3::Mesher Class Reference

#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 CGAL::cpp11::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.