CGAL 6.2 - Maximal Empty Spheres
Loading...
Searching...
No Matches

Functions

template<typename SphereRange , typename OutputIterator >
void CGAL::maximal_empty_spheres (const SphereRange &input, OutputIterator result)
 compute maximal empty spheres from a range of spheres.
 

Function Documentation

◆ maximal_empty_spheres()

template<typename SphereRange , typename OutputIterator >
void CGAL::maximal_empty_spheres ( const SphereRange &  input,
OutputIterator  result 
)

#include <CGAL/Maximal_empty_spheres/maximal_empty_spheres.h>

compute maximal empty spheres from a range of spheres.

This function computes maximal empty spheres from the input range of spheres and stores the results in the output iterator.

Template Parameters
SphereRangeA range of spheres to be processed. The value type may be a 2D circle or a 3D or dD sphere.
OutputIteratorAn output iterator to store the results which are the same type as the input spheres.
Parameters
inputThe input range of spheres.
resultThe output iterator to store the maximal empty spheres.
Examples
Maximal_empty_spheres/maximal_empty_spheres_3.cpp.