Functions
Triangulation.hpp File Reference

Functions to triangulate set of points. More...

Go to the source code of this file.

Functions

template<typename InputIterator , typename OutputIterator >
OutputIterator thor::triangulate (InputIterator verticesBegin, InputIterator verticesEnd, OutputIterator trianglesOut)
 Delaunay Triangulation. More...
 
template<typename InputIterator1 , typename InputIterator2 , typename OutputIterator >
OutputIterator thor::triangulateConstrained (InputIterator1 verticesBegin, InputIterator1 verticesEnd, InputIterator2 constrainedEdgesBegin, InputIterator2 constrainedEdgesEnd, OutputIterator trianglesOut)
 Constrained Delaunay Triangulation. More...
 
template<typename InputIterator , typename OutputIterator >
OutputIterator thor::triangulatePolygon (InputIterator verticesBegin, InputIterator verticesEnd, OutputIterator trianglesOut)
 Polygon Delaunay Triangulation. More...
 
template<typename InputIterator , typename OutputIterator1 , typename OutputIterator2 >
OutputIterator1 thor::triangulatePolygon (InputIterator verticesBegin, InputIterator verticesEnd, OutputIterator1 trianglesOut, OutputIterator2 edgesOut)
 Polygon Delaunay Triangulation. More...
 

Detailed Description

Functions to triangulate set of points.