Searched refs:ptSegDist (Results 1 - 2 of 2) 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)
H A DQuadCurve2D.java652 return Line2D.ptSegDist(x1, y1, x2, y2, ctrlx, ctrly);
686 return Line2D.ptSegDist(coords[offset + 0], coords[offset + 1],
713 return Line2D.ptSegDist(getX1(), getY1(),

Completed in 92 milliseconds