Searched refs:c1X (Results 1 – 2 of 2) sorted by relevance
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/ |
D | PathPoint.java | 69 private PathPoint(float c0X, float c0Y, float c1X, float c1Y, float x, float y) { in PathPoint() argument 72 mControl1X = c1X; in PathPoint() 90 public static PathPoint curveTo(float c0X, float c0Y, float c1X, float c1Y, float x, float y) { in curveTo() argument 91 return new PathPoint(c0X, c0Y, c1X, c1Y, x, y); in curveTo()
|
D | AnimatorPath.java | 57 public void curveTo(float c0X, float c0Y, float c1X, float c1Y, float x, float y) { in curveTo() argument 58 mPoints.add(PathPoint.curveTo(c0X, c0Y, c1X, c1Y, x, y)); in curveTo()
|