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

/frameworks/base/awt/java/awt/geom/
H A DLine2D.java820 public static double ptLineDistSq(double x1, double y1, double x2, double y2, double px, method in class:Line2D
848 return Math.sqrt(ptLineDistSq(x1, y1, x2, y2, px, py));
862 public double ptLineDistSq(double px, double py) { method in class:Line2D
863 return ptLineDistSq(getX1(), getY1(), getX2(), getY2(), px, py);
875 public double ptLineDistSq(Point2D p) { method in class:Line2D
876 return ptLineDistSq(getX1(), getY1(), getX2(), getY2(), p.getX(), p.getY());

Completed in 5 milliseconds