#include <SinglePassNoder.h>
Inheritance diagram for geos::noding::SinglePassNoder:
Public Member Functions | |
SinglePassNoder (SegmentIntersector *nSegInt=NULL) | |
virtual void | setSegmentIntersector (SegmentIntersector *newSegInt) |
virtual void | computeNodes (std::vector< SegmentString * > *segStrings)=0 |
virtual std::vector< SegmentString * > * | getNodedSubstrings () const =0 |
Protected Attributes | |
SegmentIntersector * | segInt |
Externally owned. |
Last port: noding/SinglePassNoder.java rev. 1.3 (JTS-1.7)
TODO: Noder inheritance (that's just an interface!)
|
Computes the noding for a collection of SegmentStrings.
Implements geos::noding::Noder. Implemented in geos::noding::MCIndexNoder, and geos::noding::SimpleNoder. |
|
Returns a Collection of fully noded SegmentStrings. The SegmentStrings have the same context as their parent.
Implements geos::noding::Noder. Implemented in geos::noding::MCIndexNoder, and geos::noding::SimpleNoder. |
|
Sets the SegmentIntersector to use with this noder. A SegmentIntersector will normally add intersection nodes to the input segment strings, but it may not - it may simply record the presence of intersections. However, some Noders may require that intersections be added.
|