Ejemplo n.º 1
0
 @Override
 public void rotate(float dAngle) {
   shape.rotate(dAngle);
   update();
 }
Ejemplo n.º 2
0
 @Override
 public void move(float dx, float dy) {
   if (shape != null) {
     shape.move(dx, dy);
   }
 }
Ejemplo n.º 3
0
 @Override
 public void move(Matrix dCoords) {
   if (shape != null) {
     shape.move(dCoords);
   }
 }
Ejemplo n.º 4
0
 protected void drawThisOne(IDrawContext drawContext) {
   if (shape != null) {
     shape.draw(drawContext);
   }
 }