Lines Matching defs:ctrlx1

80         public float ctrlx1;
138 * @param ctrlx1 the X coordinate for the first control point
153 float ctrlx1, float ctrly1,
157 setCurve(x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2, y2);
189 return (double) ctrlx1;
205 return new Point2D.Float(ctrlx1, ctrly1);
261 double ctrlx1, double ctrly1,
267 this.ctrlx1 = (float) ctrlx1;
283 * @param ctrlx1 the X coordinate used to set the first control point
298 float ctrlx1, float ctrly1,
304 this.ctrlx1 = ctrlx1;
318 Math.min(ctrlx1, ctrlx2));
322 Math.max(ctrlx1, ctrlx2));
363 public double ctrlx1;
421 * @param ctrlx1 the X coordinate for the first control point
436 double ctrlx1, double ctrly1,
440 setCurve(x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2, y2);
472 return ctrlx1;
488 return new Point2D.Double(ctrlx1, ctrly1);
544 double ctrlx1, double ctrly1,
550 this.ctrlx1 = ctrlx1;
564 Math.min(ctrlx1, ctrlx2));
568 Math.max(ctrlx1, ctrlx2));
701 * @param ctrlx1 the X coordinate used to set the first control point
716 double ctrlx1, double ctrly1,
792 * @param ctrlx1 the X coordinate that specifies the first control point
809 double ctrlx1, double ctrly1,
812 return Math.max(Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx1, ctrly1),
826 * @param ctrlx1 the X coordinate that specifies the first control point
843 double ctrlx1, double ctrly1,
846 return Math.sqrt(getFlatnessSq(x1, y1, ctrlx1, ctrly1,
947 double ctrlx1 = src.getCtrlX1();
953 double centerx = (ctrlx1 + ctrlx2) / 2.0;
955 ctrlx1 = (x1 + ctrlx1) / 2.0;
959 double ctrlx12 = (ctrlx1 + centerx) / 2.0;
966 left.setCurve(x1, y1, ctrlx1, ctrly1,
1008 double ctrlx1 = src[srcoff + 2];
1022 x1 = (x1 + ctrlx1) / 2.0;
1026 double centerx = (ctrlx1 + ctrlx2) / 2.0;
1028 ctrlx1 = (x1 + centerx) / 2.0;
1032 centerx = (ctrlx1 + ctrlx2) / 2.0;
1037 left[leftoff + 4] = ctrlx1;