1 #ifndef DELAUNATOR_MAIN_INTERFACE_H_INCLUDED
2 #define DELAUNATOR_MAIN_INTERFACE_H_INCLUDED
11 #include "triangulation.h"
39 const float,
const float,
40 const VertexFinderMode =
41 VERTEX_FINDER_MODE_LAST);
57 unsigned int objectCount()
const {
return this->object_count; }
58 float getXmin()
const {
return this->triangulation->getXmin(); }
59 float getXmax()
const {
return this->triangulation->getXmax(); }
60 float getYmin()
const {
return this->triangulation->getYmin(); }
61 float getYmax()
const {
return this->triangulation->getYmax(); }
62 float epsilon()
const {
return EPSILON; }
71 bool opt_isdebug()
const {
return true; }
73 bool opt_isdebug()
const {
return false; }
76 bool opt_follow_search()
const {
return true; }
78 bool opt_follow_search()
const {
return false; }
83 std::list<VirtualVertex*> virtualVertices()
const;
117 unsigned int object_count;