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

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