19 #ifndef GEOS_TRIANGULATE_VORONOIDIAGRAMBUILDER_H
20 #define GEOS_TRIANGULATE_VORONOIDIAGRAMBUILDER_H
22 #include <geos/triangulate/quadedge/QuadEdgeSubdivision.h>
23 #include <geos/geom/Envelope.h>
30 class CoordinateSequence;
31 class GeometryCollection;
32 class GeometryFactory;
34 namespace triangulate {
46 class GEOS_DLL VoronoiDiagramBuilder{
52 VoronoiDiagramBuilder();
54 ~VoronoiDiagramBuilder();
90 void setTolerance(
double tolerance);
97 std::unique_ptr<quadedge::QuadEdgeSubdivision> getSubdivision();
119 std::unique_ptr<geom::CoordinateSequence> siteCoords;
121 std::unique_ptr<quadedge::QuadEdgeSubdivision> subdiv;
127 static std::unique_ptr<geom::GeometryCollection>
135 #endif //GEOS_TRIANGULATE_VORONOIDIAGRAMBUILDER_H
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:25
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:177
Represents a collection of heterogeneous Geometry objects.
Definition: GeometryCollection.h:56
The internal representation of a list of coordinates inside a Geometry.
Definition: CoordinateSequence.h:59
An Envelope defines a rectangulare region of the 2D coordinate plane.
Definition: Envelope.h:91
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Definition: GeometryFactory.h:67