Пример #1
0
 @Override
 public void rotate(float dAngle) {
   shape.rotate(dAngle);
   update();
 }
Пример #2
0
 @Override
 public void move(float dx, float dy) {
   if (shape != null) {
     shape.move(dx, dy);
   }
 }
Пример #3
0
 @Override
 public void move(Matrix dCoords) {
   if (shape != null) {
     shape.move(dCoords);
   }
 }
Пример #4
0
 protected void drawThisOne(IDrawContext drawContext) {
   if (shape != null) {
     shape.draw(drawContext);
   }
 }