Searched refs:ptLineDist (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DLine2D.java744 * @see #ptLineDist(double, double, double, double, double, double)
807 * @see #ptLineDist(double, double)
826 * @see #ptLineDist(Point2D)
899 public static double ptLineDist(double x1, double y1, method in class:Line2D
962 public double ptLineDist(double px, double py) { method in class:Line2D
963 return ptLineDist(getX1(), getY1(), getX2(), getY2(), px, py);
978 public double ptLineDist(Point2D pt) { method in class:Line2D
979 return ptLineDist(getX1(), getY1(), getX2(), getY2(),

Completed in 277 milliseconds