Searched defs:ptSegDist (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DLine2D.java747 public static double ptSegDist(double x1, double y1, method in class:Line2D
810 public double ptSegDist(double px, double py) { method in class:Line2D
811 return ptSegDist(getX1(), getY1(), getX2(), getY2(), px, py);
829 public double ptSegDist(Point2D pt) { method in class:Line2D
830 return ptSegDist(getX1(), getY1(), getX2(), getY2(),
896 * @see #ptSegDist(double, double, double, double, double, double)
959 * @see #ptSegDist(double, double)
975 * @see #ptSegDist(Point2D)

Completed in 33 milliseconds