Exemplo n.º 1
0
 public void Execute()
 {
     // currentShape.Width = newWidth;
     // currentShape.Height = newHeight;
     // currentShape.X = newX;
     // currentShape.Y = newY;
     // currentShape.Load();
     currentShape.Accept(resizeVisitor);
 }
Exemplo n.º 2
0
 public void Execute()
 {
     shape.Accept(moveVisitor);
     shape.GenerateTransformRect();
 }