Home | History | Annotate | Download | only in graphics

Lines Matching refs:y2

251     /*package*/ static void native_quadTo(int nPath, float x1, float y1, float x2, float y2) {
257 pathDelegate.quadTo(x1, y1, x2, y2);
272 float x2, float y2, float x3, float y3) {
278 pathDelegate.cubicTo(x1, y1, x2, y2, x3, y3);
283 float x2, float y2, float x3, float y3) {
289 pathDelegate.rCubicTo(x1, y1, x2, y2, x3, y3);
624 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
630 * @param y2 The y-coordinate of the end point on a quadratic curve
632 private void quadTo(float x1, float y1, float x2, float y2) {
633 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2);
663 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
669 * @param y2 The y-coordinate of the 2nd control point on a cubic curve
673 private void cubicTo(float x1, float y1, float x2, float y2,
675 mPath.curveTo(x1, y1, x2, y2, mLastX = x3, mLastY = y3);