object NodingIntersectionFinder
Finds non-noded intersections in a set of {link SegmentString}s, if any exist.
Non-noded intersections include:
- Interior intersections which lie in the interior of a segment (with another segment interior or with a vertex or endpoint)
- Vertex intersections which occur at vertices in the interior of {link SegmentString}s (with a segment string endpoint or with another interior vertex)
The finder can be limited to finding only interior intersections by setting {link #setInteriorIntersectionsOnly(boolean).
By default only the first intersection is found, but all can be found by setting {link #setFindAllIntersections(boolean)
- Version
1.7
- Alphabetic
- By Inheritance
- NodingIntersectionFinder
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def createAllIntersectionsFinder(li: LineIntersector): NodingIntersectionFinder
Creates a finder which finds all intersections.
Creates a finder which finds all intersections. The intersections are recorded for later inspection.
- li
a line intersector return a finder which finds all intersections.
- def createAnyIntersectionFinder(li: LineIntersector): NodingIntersectionFinder
Creates a finder which tests if there is at least one intersection.
Creates a finder which tests if there is at least one intersection. Uses short-circuiting for efficient performance. The intersection found is recorded.
- li
a line intersector return a finder which tests if there is at least one intersection.
- def createInteriorIntersectionCounter(li: LineIntersector): NodingIntersectionFinder
Creates an finder which counts all interior intersections.
Creates an finder which counts all interior intersections. The intersections are note recorded to reduce memory usage.
- li
a line intersector return a finder which counts all interior intersections.
- def createInteriorIntersectionsFinder(li: LineIntersector): NodingIntersectionFinder
Creates a finder which finds all interior intersections.
Creates a finder which finds all interior intersections. The intersections are recorded for later inspection.
- li
a line intersector return a finder which finds all interior intersections.
- def createIntersectionCounter(li: LineIntersector): NodingIntersectionFinder
Creates an finder which counts all intersections.
Creates an finder which counts all intersections. The intersections are note recorded to reduce memory usage.
- li
a line intersector return a finder which counts all intersections.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()