Interface ICommand
A command according to the command pattern. It supports undo and redo.
Namespace: VRSketchingGeometry.Commands
Assembly: VRSketchingGeometry.dll
Syntax
public interface ICommand
Remarks
Original author: tterpi
Methods
Execute()
Execute this command.
Declaration
bool Execute()
Returns
| Type | Description |
|---|---|
| System.Boolean | Returns true if execution was successful. Returns false if execution was unsuccessful, command will be discarded in this case. |
Redo()
Declaration
void Redo()
Undo()
Declaration
void Undo()