Lines Matching defs:x2

112         public float x2;
146 * @param x2 the X coordinate for the end point
155 float x2, float y2)
157 setCurve(x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2, y2);
237 return (double) x2;
253 return new Point2D.Float(x2, y2);
263 double x2, double y2)
271 this.x2 = (float) x2;
291 * @param x2 the X coordinate used to set the end point
300 float x2, float y2)
308 this.x2 = x2;
317 float left = Math.min(Math.min(x1, x2),
321 float right = Math.max(Math.max(x1, x2),
395 public double x2;
429 * @param x2 the X coordinate for the end point
438 double x2, double y2)
440 setCurve(x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2, y2);
520 return x2;
536 return new Point2D.Double(x2, y2);
546 double x2, double y2)
554 this.x2 = x2;
563 double left = Math.min(Math.min(x1, x2),
567 double right = Math.max(Math.max(x1, x2),
709 * @param x2 the X coordinate used to set the end point
718 double x2, double y2);
800 * @param x2 the X coordinate that specifies the end point
811 double x2, double y2) {
812 return Math.max(Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx1, ctrly1),
813 Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx2, ctrly2));
834 * @param x2 the X coordinate that specifies the end point
845 double x2, double y2) {
847 ctrlx2, ctrly2, x2, y2));
951 double x2 = src.getX2();
957 ctrlx2 = (x2 + ctrlx2) / 2.0;
971 ctrlx2, ctrly2, x2, y2);
1012 double x2 = src[srcoff + 6];
1019 right[rightoff + 6] = x2;
1024 x2 = (x2 + ctrlx2) / 2.0;
1030 ctrlx2 = (x2 + centerx) / 2.0;
1047 right[rightoff + 4] = x2;
1260 double x2 = intervals[1];
1268 double x = abs(x1 - goodRoot) > abs(x2 - goodRoot) ? x1 : x2;
1368 private static boolean oppositeSigns(double x1, double x2) {
1369 return (x1 < 0 && x2 > 0) || (x1 > 0 && x2 < 0);
1417 double x2 = getX2();
1420 (Curve.pointCrossingsForLine(x, y, x1, y1, x2, y2) +
1425 x2, y2, 0));