Lines Matching refs:ctrly

84         public float ctrly;
117 * @param ctrly the Y coordinate of the control point
123 float ctrlx, float ctrly,
126 setCurve(x1, y1, ctrlx, ctrly, x2, y2);
166 return (double) ctrly;
174 return new Point2D.Float(ctrlx, ctrly);
206 double ctrlx, double ctrly,
212 this.ctrly = (float) ctrly;
224 * @param ctrly the Y coordinate of the control point
230 float ctrlx, float ctrly,
236 this.ctrly = ctrly;
247 float top = Math.min(Math.min(y1, y2), ctrly);
249 float bottom = Math.max(Math.max(y1, y2), ctrly);
297 public double ctrly;
330 * @param ctrly the Y coordinate of the control point
336 double ctrlx, double ctrly,
339 setCurve(x1, y1, ctrlx, ctrly, x2, y2);
379 return ctrly;
387 return new Point2D.Double(ctrlx, ctrly);
419 double ctrlx, double ctrly,
425 this.ctrly = ctrly;
436 double top = Math.min(Math.min(y1, y2), ctrly);
438 double bottom = Math.max(Math.max(y1, y2), ctrly);
542 * @param ctrly the Y coordinate of the control point
548 double ctrlx, double ctrly,
621 * @param ctrly the Y coordinate of the control point
629 double ctrlx, double ctrly,
631 return Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx, ctrly);
642 * @param ctrly the Y coordinate of the control point
650 double ctrlx, double ctrly,
652 return Line2D.ptSegDist(x1, y1, x2, y2, ctrlx, ctrly);
755 double ctrly = src.getCtrlY();
759 double ctrly1 = (y1 + ctrly) / 2.0;
761 double ctrly2 = (y2 + ctrly) / 2.0;
763 ctrly = (ctrly1 + ctrly2) / 2.0;
765 left.setCurve(x1, y1, ctrlx1, ctrly1, ctrlx, ctrly);
768 right.setCurve(ctrlx, ctrly, ctrlx2, ctrly2, x2, y2);
806 double ctrly = src[srcoff + 3];
818 y1 = (y1 + ctrly) / 2.0;
820 y2 = (y2 + ctrly) / 2.0;
822 ctrly = (y1 + y2) / 2.0;
827 left[leftoff + 5] = ctrly;
831 right[rightoff + 1] = ctrly;
1149 double ctrly = getCtrlY();
1151 int ctrlytag = getTag(ctrly, y, y+h);
1210 fillEqn(eqn, (y1tag < INSIDE ? y : y+h), y1, ctrly, y2);
1227 y1, ctrly, y2) == 2 &&
1293 evalQuadratic(res, num, true, true, null, y1, ctrly, y2);