Home | History | Annotate | Download | only in animation

Lines Matching refs:shapeHolder

108         public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
110 ShapeHolder ball = null;
170 private ShapeHolder createBall(float x, float y) {
174 ShapeHolder shapeHolder = new ShapeHolder(drawable);
175 shapeHolder.setX(x - 25f);
176 shapeHolder.setY(y - 25f);
186 shapeHolder.setPaint(paint);
187 return shapeHolder;