Home | History | Annotate | Download | only in animation

Lines Matching refs:ball

110         ShapeHolder ball = null;
115 ball = createBall(25, 25);
120 ObjectAnimator yAnim = ObjectAnimator.ofFloat(ball, "y",
121 ball.getY(), getHeight() - 50f).setDuration(1500);
128 ObjectAnimator xAnim = ObjectAnimator.ofFloat(ball, "x",
129 ball.getX(), ball.getX() + 300).setDuration(1000);
135 ObjectAnimator alphaAnim = ObjectAnimator.ofFloat(ball, "alpha", 1f, .5f).
193 canvas.translate(ball.getX(), ball.getY());
194 ball.getShape().draw(canvas);