Lines Matching defs:x1

381         public final synchronized void quadTo(double x1, double y1,
386 floatCoords[numCoords++] = (float) x1;
396 * using the specified point {@code (x1,y1)} as a quadratic
404 * @param x1 the X coordinate of the quadratic control point
411 public final synchronized void quadTo(float x1, float y1,
416 floatCoords[numCoords++] = x1;
426 public final synchronized void curveTo(double x1, double y1,
432 floatCoords[numCoords++] = (float) x1;
444 * using the specified points {@code (x1,y1)} and {@code (x2,y2)} as
452 * @param x1 the X coordinate of the first Bézier control point
461 public final synchronized void curveTo(float x1, float y1,
467 floatCoords[numCoords++] = x1;
705 float x1, y1, x2, y2;
709 x1 = x2 = floatCoords[--i];
713 if (x < x1) x1 = x;
719 x1 = y1 = x2 = y2 = 0.0f;
721 return new Rectangle2D.Float(x1, y1, x2 - x1, y2 - y1);
1170 public final synchronized void quadTo(double x1, double y1,
1175 doubleCoords[numCoords++] = x1;
1185 public final synchronized void curveTo(double x1, double y1,
1191 doubleCoords[numCoords++] = x1;
1430 double x1, y1, x2, y2;
1434 x1 = x2 = doubleCoords[--i];
1438 if (x < x1) x1 = x;
1444 x1 = y1 = x2 = y2 = 0.0;
1446 return new Rectangle2D.Double(x1, y1, x2 - x1, y2 - y1);
1727 * using the specified point {@code (x1,y1)} as a quadratic
1731 * @param x1 the X coordinate of the quadratic control point
1737 public abstract void quadTo(double x1, double y1,
1744 * using the specified points {@code (x1,y1)} and {@code (x2,y2)} as
1748 * @param x1 the X coordinate of the first B&eacute;zier control point
1756 public abstract void curveTo(double x1, double y1,