17 #include <geos/export.h> 19 #include <geos/geom/Geometry.h> 20 #include <geos/geom/Point.h> 29 class CoordinateSequence;
30 class GeometryFactory;
65 std::vector<std::unique_ptr<Point>> resultList;
69 computeIntersection(std::map<
Coordinate, std::unique_ptr<Point>>& map0,
70 std::map<
Coordinate, std::unique_ptr<Point>>& map1,
71 std::vector<std::unique_ptr<Point>>& resultList);
74 computeDifference(std::map<
Coordinate, std::unique_ptr<Point>>& map0,
75 std::map<
Coordinate, std::unique_ptr<Point>>& map1,
76 std::vector<std::unique_ptr<Point>>& resultList);
79 computeUnion(std::map<
Coordinate, std::unique_ptr<Point>>& map0,
80 std::map<
Coordinate, std::unique_ptr<Point>>& map1,
81 std::vector<std::unique_ptr<Point>>& resultList);
83 std::map<Coordinate, std::unique_ptr<Point>> buildPointMap(
const Geometry* geom);
99 , geometryFactory(p_geom0->getFactory()) {}
114 std::unique_ptr<Geometry> getResult();
Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:60
Definition: OverlayPoints.h:55
Definition: IndexedNestedRingTester.h:27
Specifies the precision model of the Coordinate in a Geometry.
Definition: PrecisionModel.h:87
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:188
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Definition: GeometryFactory.h:68
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:26
OverlayPoints(int p_opCode, const Geometry *p_geom0, const Geometry *p_geom1, const PrecisionModel *p_pm)
Definition: OverlayPoints.h:94