Exemplo n.º 1
0
 @Override
 public void move(Matrix dCoords) {
   if (shape != null) {
     shape.move(dCoords);
   }
 }
Exemplo n.º 2
0
 @Override
 public void move(float dx, float dy) {
   if (shape != null) {
     shape.move(dx, dy);
   }
 }