public CellsHolderEditorSelectMode(CellsHolderEditor controller)
     : base(controller, CellsHolderEditor.EditingMode.Select)
 {
 }
Esempio n. 2
0
 public CellsHolderEditorVertexMode(CellsHolderEditor controller)
     : base(controller, CellsHolderEditor.EditingMode.Vertex)
 {
 }
 public CellsHolderEditorEdgeMode(CellsHolderEditor controller)
     : base(controller, CellsHolderEditor.EditingMode.Edge)
 {
 }
 protected BasicCellsHolderEditorMode(CellsHolderEditor controller
                                      , CellsHolderEditor.EditingMode editingMode)
 {
     this.controller  = controller;
     this.editingMode = editingMode;
 }