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

/frameworks/base/awt/java/awt/geom/
H A DLine2D.java847 public static double ptLineDist(double x1, double y1, double x2, double y2, double px, double py) { method in class:Line2D
890 public double ptLineDist(double px, double py) { method in class:Line2D
891 return ptLineDist(getX1(), getY1(), getX2(), getY2(), px, py);
903 public double ptLineDist(Point2D p) { method in class:Line2D
904 return ptLineDist(getX1(), getY1(), getX2(), getY2(), p.getX(), p.getY());

Completed in 47 milliseconds