Package org.meteoinfo.jts.noding
Class SimpleSegmentSetMutualIntersector
- java.lang.Object
-
- org.meteoinfo.jts.noding.SimpleSegmentSetMutualIntersector
-
- All Implemented Interfaces:
SegmentSetMutualIntersector
public class SimpleSegmentSetMutualIntersector extends java.lang.Object implements SegmentSetMutualIntersector
Intersects two sets ofSegmentStrings using brute-force comparison.
-
-
Constructor Summary
Constructors Constructor Description SimpleSegmentSetMutualIntersector(java.util.Collection segStrings)Constructs a new intersector for a given set ofSegmentStrings.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocess(java.util.Collection segStrings, SegmentIntersector segInt)CallsSegmentIntersector.processIntersections(SegmentString, int, SegmentString, int)for all candidate intersections between the given collection of SegmentStrings and the set of base segments.
-
-
-
Method Detail
-
process
public void process(java.util.Collection segStrings, SegmentIntersector segInt)CallsSegmentIntersector.processIntersections(SegmentString, int, SegmentString, int)for all candidate intersections between the given collection of SegmentStrings and the set of base segments.- Specified by:
processin interfaceSegmentSetMutualIntersector- Parameters:
a- set of segments to intersectthe- segment intersector to use
-
-