Home | History | Annotate | Download | only in animation

Lines Matching refs:shapeHolder

97         public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>();
100 ShapeHolder ball = null;
126 private ShapeHolder addBall(float x, float y) {
130 ShapeHolder shapeHolder = new ShapeHolder(drawable);
131 shapeHolder.setX(x);
132 shapeHolder.setY(y);
142 shapeHolder.setPaint(paint);
143 balls.add(shapeHolder);
144 return shapeHolder;