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