Class LineIntersection

java.lang.Object
com.luciad.geodesy.LineIntersection
All Implemented Interfaces:
AutoCloseable

public final class LineIntersection extends Object implements AutoCloseable
The result of a line intersection.

If an intersection exists, this can either be a single point, or a line segment.

Since:
2025.0
See Also:
  • Constructor Details

    • LineIntersection

      public LineIntersection(@NotNull Coordinate point)
      Creates a line intersection result that consists of a single point.
      Parameters:
      point - the intersection point
    • LineIntersection

      public LineIntersection(@NotNull Line lineSegment)
      Creates a line intersection result that consists of a line segment.
      Parameters:
      lineSegment - the line segment that forms the intersection
  • Method Details