16 #ifndef GEOS_NODING_SINGLEINTERIORINTERSECTIONFINDER_H
17 #define GEOS_NODING_SINGLEINTERIORINTERSECTIONFINDER_H
19 #include <geos/noding/SegmentIntersector.h>
20 #include <geos/geom/Coordinate.h>
27 class LineIntersector;
58 interiorIntersection(geom::Coordinate::getNull())
69 return !interiorIntersection.isNull();
80 return interiorIntersection;
108 return !interiorIntersection.isNull();
114 std::vector<geom::Coordinate> intSegments;
124 #endif // GEOS_NODING_SINGLEINTERIORINTERSECTIONFINDER_H
void processIntersections(SegmentString *e0, int segIndex0, SegmentString *e1, int segIndex1)
This method is called by clients of the SegmentIntersector class to process intersections for two seg...
Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:61
bool isDone() const
Reports whether the client of this class needs to continue testing all intersections in an arrangemen...
Definition: SingleInteriorIntersectionFinder.h:106
An interface for classes which represent a sequence of contiguous line segments.
Definition: SegmentString.h:46
bool hasIntersection() const
Tests whether an intersection was found.
Definition: SingleInteriorIntersectionFinder.h:67
A LineIntersector is an algorithm that can both test whether two line segments intersect and compute ...
Definition: LineIntersector.h:50
Processes possible intersections detected by a Noder.
Definition: noding/SegmentIntersector.h:48
const geom::Coordinate & getInteriorIntersection() const
Gets the computed location of the intersection. Due to round-off, the location may not be exact...
Definition: SingleInteriorIntersectionFinder.h:78
const std::vector< geom::Coordinate > & getIntersectionSegments() const
Gets the endpoints of the intersecting segments.
Definition: SingleInteriorIntersectionFinder.h:88
Finds an interior intersection in a set of SegmentString, if one exists. Only the first intersection ...
Definition: SingleInteriorIntersectionFinder.h:44
SingleInteriorIntersectionFinder(algorithm::LineIntersector &newLi)
Creates an intersection finder which finds an interior intersection if one exists.
Definition: SingleInteriorIntersectionFinder.h:55