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

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DLine2D.java672 public static double ptSegDistSq(double x1, double y1, method in class:Line2D
751 return Math.sqrt(ptSegDistSq(x1, y1, x2, y2, px, py));
770 public double ptSegDistSq(double px, double py) { method in class:Line2D
771 return ptSegDistSq(getX1(), getY1(), getX2(), getY2(), px, py);
789 public double ptSegDistSq(Point2D pt) { method in class:Line2D
790 return ptSegDistSq(getX1(), getY1(), getX2(), getY2(),
851 * @see #ptSegDistSq(double, double, double, double, double, double)
919 * @see #ptSegDistSq(double, double)
938 * @see #ptSegDistSq(Point2D)
H A DQuadCurve2D.java631 return Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx, ctrly);
668 return Line2D.ptSegDistSq(coords[offset + 0], coords[offset + 1],
700 return Line2D.ptSegDistSq(getX1(), getY1(),
H A DCubicCurve2D.java812 return Math.max(Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx1, ctrly1),
813 Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx2, ctrly2));
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java112 return Line2D.ptSegDistSq(coords[offset + 0], coords[offset + 1],
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DMultiConnectionWidget.java183 double dist = Line2D.ptSegDistSq((double) r.from.x, (double) r.from.y, (double) r.to.x, (double) r.to.y, (double) localLocation.x, (double) localLocation.y);
202 double dist = Line2D.ptSegDistSq((double) r.from.x, (double) r.from.y, (double) r.to.x, (double) r.to.y, (double) localLocation.x, (double) localLocation.y);
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DShapeSpanIterator.c919 ptSegDistSq(jfloat x0, jfloat y0, function
1097 if (ptSegDistSq(x0, y0, x2, y2, x1, y1) > MAX_FLAT_SQ) {
1140 if (ptSegDistSq(x0, y0, x3, y3, x1, y1) > MAX_FLAT_SQ ||
1141 ptSegDistSq(x0, y0, x3, y3, x2, y2) > MAX_FLAT_SQ)

Completed in 61 milliseconds