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

/frameworks/base/awt/java/awt/geom/
H A DLine2D.java749 public static double ptSegDist(double x1, double y1, double x2, double y2, double px, double py) { method in class:Line2D
788 public double ptSegDist(double px, double py) { method in class:Line2D
789 return ptSegDist(getX1(), getY1(), getX2(), getY2(), px, py);
799 public double ptSegDist(Point2D p) { method in class:Line2D
800 return ptSegDist(getX1(), getY1(), getX2(), getY2(), p.getX(), p.getY());

Completed in 50 milliseconds