public class IntersectionAdder extends Objectimplements SegmentIntersector
NodedSegmentStrings and adds them to each string using
NodedSegmentString.addIntersection(LineIntersector, int, int, int) .
| Modifier and Type | Field and Description |
|---|---|
int |
numInteriorIntersections
|
int |
numIntersections
|
int |
numProperIntersections
|
int |
numTests
|
| Constructor and Description |
|---|
IntersectionAdder(LineIntersector
|
| Modifier and Type | Method and Description |
|---|---|
LineIntersector |
getLineIntersector()
|
Coordinate |
getProperIntersectionPoint()
|
boolean |
hasInteriorIntersection()
An interior intersection is an intersection which is in the interior of some segment.
|
boolean |
hasIntersection()
|
boolean |
hasProperInteriorIntersection()
A proper interior intersection is a proper intersection which is
not contained in the set of boundary nodes set for this SegmentIntersector.
|
boolean |
hasProperIntersection()
A proper intersection is an intersection which is interior to at least two line segments.
|
static boolean |
isAdjacentSegments(int i1, int i2)
|
boolean |
isDone()
Always process all intersections
|
void |
processIntersections(SegmentString
This method is called by clients of the
SegmentIntersector class to process intersections for two segments of the
SegmentStrings being intersected.
|
public int numIntersections
public int numInteriorIntersections
public int numProperIntersections
public int numTests
public IntersectionAdder(LineIntersectorli)
public static boolean isAdjacentSegments(int i1,
int i2)public LineIntersectorgetLineIntersector()
public CoordinategetProperIntersectionPoint()
null if none was found
public boolean hasIntersection()
public boolean hasProperIntersection()
public boolean hasProperInteriorIntersection()
public boolean hasInteriorIntersection()
public void processIntersections(SegmentStringe0, int segIndex0, SegmentString e1, int segIndex1)
SegmentIntersector class to process intersections for two segments of the
SegmentStrings being intersected. Note that some clients (such as
MonotoneChains) may optimize away this call for segment pairs which they have determined do not intersect (e.g. by an disjoint envelope test).
public boolean isDone()
isDone in interface
SegmentIntersector