@Override public void move(Matrix dCoords) { if (shape != null) { shape.move(dCoords); } }
@Override public void move(float dx, float dy) { if (shape != null) { shape.move(dx, dy); } }