17 #include <geos/export.h> 22 #include <geos/noding/Noder.h> 23 #include <geos/algorithm/LineIntersector.h> 24 #include <geos/geom/Coordinate.h> 25 #include <geos/geom/PrecisionModel.h> 26 #include <geos/noding/SegmentIntersector.h> 36 class NodedSegmentString;
68 std::unique_ptr<std::vector<geom::Coordinate>> intersections;
93 , intersections(
new std::vector<geom::Coordinate>)
94 , nearnessTol(p_nearnessTol)
97 std::unique_ptr<std::vector<geom::Coordinate>> getIntersections() {
return std::move(intersections); };
113 bool isDone()
const override {
return false; }
Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:58
An interface for classes which represent a sequence of contiguous line segments.
Definition: SegmentString.h:45
bool isDone() const override
Definition: SnapRoundingIntersectionAdder.h:113
A LineIntersector is an algorithm that can both test whether two line segments intersect and compute ...
Definition: LineIntersector.h:50
Definition: SnapRoundingIntersectionAdder.h:63
Basic namespace for all GEOS functionalities.
Definition: Angle.h:25
Processes possible intersections detected by a Noder.
Definition: noding/SegmentIntersector.h:45