Exemplo n.º 1
0
        public void UnExecute()
        {
            // deselect the object
            ICommand deselect = new DeselectObjectCommand(obj);

            deselect.Execute();
        }
Exemplo n.º 2
0
 public void Execute()
 {
     foreach(IObject3D obj in objects)
     {
         // deselect the objects
         ICommand command = new DeselectObjectCommand(obj);
         command.Execute();
     }
 }
Exemplo n.º 3
0
 public void Execute()
 {
     foreach (IObject3D obj in objects)
     {
         // deselect the objects
         ICommand command = new DeselectObjectCommand(obj);
         command.Execute();
     }
 }
Exemplo n.º 4
0
 public void UnExecute()
 {
     // deselect the object
     ICommand deselect = new DeselectObjectCommand(obj);
     deselect.Execute();
 }