19 #ifndef GEOS_NODING_INTERSECTIONFINDERADDER_H 20 #define GEOS_NODING_INTERSECTIONFINDERADDER_H 22 #include <geos/export.h> 27 #include <geos/inline.h> 29 #include <geos/geom/Coordinate.h> 30 #include <geos/noding/SegmentIntersector.h> 41 class LineIntersector;
65 std::vector<geom::Coordinate>& v)
68 interiorIntersections(v)
81 void processIntersections(
85 std::vector<geom::Coordinate>& getInteriorIntersections() {
86 return interiorIntersections;
100 std::vector<geom::Coordinate>& interiorIntersections;
110 #endif // GEOS_NODING_INTERSECTIONFINDERADDER_H Finds proper and interior intersections in a set of SegmentStrings, and adds them as nodes...
Definition: IntersectionFinderAdder.h:53
An interface for classes which represent a sequence of contiguous line segments.
Definition: SegmentString.h:46
virtual bool isDone() const
Definition: IntersectionFinderAdder.h:94
IntersectionFinderAdder(algorithm::LineIntersector &newLi, std::vector< geom::Coordinate > &v)
Definition: IntersectionFinderAdder.h:64
A LineIntersector is an algorithm that can both test whether two line segments intersect and compute ...
Definition: LineIntersector.h:49
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:25
Processes possible intersections detected by a Noder.
Definition: noding/SegmentIntersector.h:47