Class LineSegment
- java.lang.Object
-
- org.apache.lucene.spatial.geometry.shape.LineSegment
-
@Deprecated public class LineSegment extends Object
Deprecated.2d line segment.NOTE: This API is still in flux and might change in incompatible ways in the next release.
-
-
Constructor Summary
Constructors Constructor Description LineSegment()
Deprecated.LineSegment(Point2D p1, Point2D p2)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description double
distance(Point2D P, Point2D closestPt)
Deprecated.Finds the distance of a specified point from the line segment and the closest point on the segment to the specified point.boolean
equals(Object obj)
Deprecated.int
hashCode()
Deprecated.
-
-
-
Method Detail
-
distance
public double distance(Point2D P, Point2D closestPt)
Deprecated.Finds the distance of a specified point from the line segment and the closest point on the segment to the specified point.- Parameters:
P
- Test point.closestPt
- (Return) Closest point on the segment to c.- Returns:
- Returns the distance from P to the closest point on the segment.
-
-