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. | |
template<typename InputIterator1 , typename InputIterator2 , typename OutputIterator > | |
OutputIterator | thor::TriangulateConstrained (InputIterator1 verticesBegin, InputIterator1 verticesEnd, InputIterator2 constrainedEdgesBegin, InputIterator2 constrainedEdgesEnd, OutputIterator trianglesOut) |
Constrained Delaunay Triangulation. | |
template<typename InputIterator , typename OutputIterator > | |
OutputIterator | thor::TriangulatePolygon (InputIterator verticesBegin, InputIterator verticesEnd, OutputIterator trianglesOut) |
Polygon Delaunay Triangulation. | |
template<typename InputIterator , typename OutputIterator1 , typename OutputIterator2 > | |
OutputIterator1 | thor::TriangulatePolygon (InputIterator verticesBegin, InputIterator verticesEnd, OutputIterator1 trianglesOut, OutputIterator2 edgesOut) |
Polygon Delaunay Triangulation. |
Functions to triangulate set of points.