GEOS  3.9.1dev
OffsetCurveSetBuilder.h
Go to the documentation of this file.
1 /**********************************************************************
2  *
3  * GEOS - Geometry Engine Open Source
4  * http://geos.osgeo.org
5  *
6  * Copyright (C) 2011 Sandro Santilli <strk@kbt.io>
7  * Copyright (C) 2006 Refractions Research Inc.
8  *
9  * This is free software; you can redistribute and/or modify it under
10  * the terms of the GNU Lesser General Public Licence as published
11  * by the Free Software Foundation.
12  * See the COPYING file for more information.
13  *
14  **********************************************************************
15  *
16  * Last port: operation/buffer/OffsetCurveSetBuilder.java r378 (JTS-1.12)
17  *
18  **********************************************************************/
19 
20 #ifndef GEOS_OP_BUFFER_OFFSETCURVESETBUILDER_H
21 #define GEOS_OP_BUFFER_OFFSETCURVESETBUILDER_H
22 
23 #include <geos/export.h>
24 #include <geos/geom/Location.h>
25 
26 #include <vector>
27 
28 #ifdef _MSC_VER
29 #pragma warning(push)
30 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
31 #endif
32 
33 // Forward declarations
34 namespace geos {
35 namespace geom {
36 class Geometry;
37 class CoordinateSequence;
38 class GeometryCollection;
39 class Point;
40 class LineString;
41 class LinearRing;
42 class Polygon;
43 }
44 namespace geomgraph {
45 class Label;
46 }
47 namespace noding {
48 class SegmentString;
49 }
50 namespace operation {
51 namespace buffer {
52 class OffsetCurveBuilder;
53 }
54 }
55 }
56 
57 namespace geos {
58 namespace operation { // geos.operation
59 namespace buffer { // geos.operation.buffer
60 
72 
73 private:
74 
75  // To keep track of newly-created Labels.
76  // Labels will be relesed by object dtor
77  std::vector<geomgraph::Label*> newLabels;
78 
80 
81  double distance;
82 
84 
88  std::vector<noding::SegmentString*> curveList;
89 
102  void addCurve(geom::CoordinateSequence* coord, geom::Location leftLoc,
103  geom::Location rightLoc);
104 
105  void add(const geom::Geometry& g);
106 
107  void addCollection(const geom::GeometryCollection* gc);
108 
112  void addPoint(const geom::Point* p);
113 
114  void addLineString(const geom::LineString* line);
115 
116  void addPolygon(const geom::Polygon* p);
117 
118  void addRingBothSides(const geom::CoordinateSequence* coord, double p_distance);
119 
138  void addRingSide(const geom::CoordinateSequence* coord,
139  double offsetDistance, int side, geom::Location cwLeftLoc,
140  geom::Location cwRightLoc);
141 
151  bool isErodedCompletely(const geom::LinearRing* ringCoord,
152  double bufferDistance);
153 
172  bool isTriangleErodedCompletely(const geom::CoordinateSequence* triCoords,
173  double bufferDistance);
174 
175  // Declare type as noncopyable
176  OffsetCurveSetBuilder(const OffsetCurveSetBuilder& other) = delete;
177  OffsetCurveSetBuilder& operator=(const OffsetCurveSetBuilder& rhs) = delete;
178 
179 public:
180 
182  OffsetCurveSetBuilder(const geom::Geometry& newInputGeom,
183  double newDistance, OffsetCurveBuilder& newCurveBuilder);
184 
187 
196  std::vector<noding::SegmentString*>& getCurves();
197 
205  void addCurves(const std::vector<geom::CoordinateSequence*>& lineList,
206  geom::Location leftLoc, geom::Location rightLoc);
207 
208 };
209 
210 } // namespace geos::operation::buffer
211 } // namespace geos::operation
212 } // namespace geos
213 
214 #ifdef _MSC_VER
215 #pragma warning(pop)
216 #endif
217 
218 #endif // ndef GEOS_OP_BUFFER_OFFSETCURVESETBUILDER_H
219 
Creates all the raw offset curves for a buffer of a Geometry.
#define GEOS_DLL
Definition: export.h:28
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:188
Represents a linear polygon, which may include holes.
Definition: Polygon.h:64
Location
Constants representing the location of a point relative to a geometry.
Definition: Location.h:34
Computes the raw offset curve for a single Geometry component (ring, line or point).
Represents a collection of heterogeneous Geometry objects.
Basic namespace for all GEOS functionalities.
Models an OGC SFS LinearRing. A LinearRing is a LineString which is both closed and simple...
Definition: LinearRing.h:54
std::vector< noding::SegmentString * > curveList
The internal representation of a list of coordinates inside a Geometry.