GEOS 3.6.2
VoronoiDiagramBuilder.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2012 Excensus LLC.
7 *
8 * This is free software; you can redistribute and/or modify it under
9 * the terms of the GNU Lesser General Licence as published
10 * by the Free Software Foundation.
11 * See the COPYING file for more information.
12 *
13 **********************************************************************
14 *
15 * Last port: triangulate/VoronoiDiagramBuilder.java r524
16 *
17 **********************************************************************/
18
19#ifndef GEOS_TRIANGULATE_VORONOIDIAGRAMBUILDER_H
20#define GEOS_TRIANGULATE_VORONOIDIAGRAMBUILDER_H
21
22#include <geos/triangulate/quadedge/QuadEdgeSubdivision.h>
23#include <geos/geom/Envelope.h> // for composition
24#include <memory>
25#include <iostream>
26
27namespace geos {
28 namespace geom{
29 class Geometry;
32 class GeometryFactory;
33}
34namespace triangulate { //geos.triangulate
35
46class GEOS_DLL VoronoiDiagramBuilder{
47public:
53
55
63
71
81 void setClipEnvelope(const geom::Envelope* clipEnv);
82
90 void setTolerance(double tolerance);
91
97 std::auto_ptr<quadedge::QuadEdgeSubdivision> getSubdivision();
98
106 std::auto_ptr<geom::GeometryCollection> getDiagram(const geom::GeometryFactory& geomFact);
107
115 std::auto_ptr<geom::Geometry> getDiagramEdges(const geom::GeometryFactory& geomFact);
116
117private:
118
119 std::auto_ptr<geom::CoordinateSequence> siteCoords;
120 double tolerance;
121 std::auto_ptr<quadedge::QuadEdgeSubdivision> subdiv;
122 const geom::Envelope* clipEnv; // externally owned
123 geom::Envelope diagramEnv;
124
125 void create();
126
127 static std::auto_ptr<geom::GeometryCollection>
128 clipGeometryCollection(const geom::GeometryCollection& geom, const geom::Envelope& clipEnv);
129
130};
131
132} //namespace geos.triangulate
133} //namespace geos
134
135#endif //GEOS_TRIANGULATE_VORONOIDIAGRAMBUILDER_H
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:53
Represents a collection of heterogeneous Geometry objects.
Definition GeometryCollection.h:56
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Definition GeometryFactory.h:67
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition Geometry.h:167
void setClipEnvelope(const geom::Envelope *clipEnv)
std::auto_ptr< quadedge::QuadEdgeSubdivision > getSubdivision()
std::auto_ptr< geom::Geometry > getDiagramEdges(const geom::GeometryFactory &geomFact)
void setSites(const geom::CoordinateSequence &coords)
void setSites(const geom::Geometry &geom)
std::auto_ptr< geom::GeometryCollection > getDiagram(const geom::GeometryFactory &geomFact)
Contains the Geometry interface hierarchy and supporting classes.
Definition IndexedNestedRingTester.h:26
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25