Esempio n. 1
0
 public PathTool(IOverlayInterface overlay) : base(overlay) { }
 public RectangleTool(IOverlayInterface overlay) : base(overlay)
 {
     PreviewRect = CreatePreviewShape();
 }
Esempio n. 3
0
 public NodeTool(IOverlayInterface overlay) : base(overlay) { }
Esempio n. 4
0
 public ArcEditTool(IOverlayInterface overlay)
     : base(overlay)
 {
     PreviewArc = overlay.ShapeFactory.GetPreviewFan();
 }
Esempio n. 5
0
 public RectangleTool(IOverlayInterface overlay) : base(overlay)
 {
     PreviewRect = CreatePreviewShape();
 }
Esempio n. 6
0
 public ArcEditTool(IOverlayInterface overlay)
     : base(overlay)
 {
     PreviewArc = overlay.ShapeFactory.GetPreviewFan();
 }
Esempio n. 7
0
 public SmoothCurveTool(IOverlayInterface overlay) : base(overlay) { }
Esempio n. 8
0
 public BezierTool(IOverlayInterface overlay) : base(overlay)
 {
     Preview_CP1 = overlay.ShapeFactory.GetCPCircle();
     Preview_CP2 = overlay.ShapeFactory.GetCPCircle();
 }
Esempio n. 9
0
 public SelectionTool(IOverlayInterface overlay) : base(overlay)
 {
     SelectionRect = overlay.ShapeFactory.GetSelectionRect();
 }
Esempio n. 10
0
 public EdgeTool(IOverlayInterface overlay) : base(overlay)
 {
 }
Esempio n. 11
0
 public OverlayAdderTool(IOverlayInterface overlay) : base(overlay)
 {
 }
Esempio n. 12
0
 public NodeTool(IOverlayInterface overlay) : base(overlay)
 {
 }
Esempio n. 13
0
 public PathTool(IOverlayInterface overlay) : base(overlay)
 {
 }
 public GridTool(IOverlayInterface overlay)
     : base(overlay)
 {
     codeToInsert = " grid ";
     ForcePointsBLTR = true;
 }
Esempio n. 15
0
 public EdgeTool(IOverlayInterface overlay) : base(overlay) { }
Esempio n. 16
0
 public ArcTool(IOverlayInterface overlay) : base(overlay)
 {
     PreviewArc = overlay.ShapeFactory.GetPreviewArc();
     PreviewPie = overlay.ShapeFactory.GetPreviewPie();
 }
Esempio n. 17
0
 public OverlayAdderTool(IOverlayInterface overlay) : base(overlay) { }
Esempio n. 18
0
 public SmoothCurveTool(IOverlayInterface overlay) : base(overlay)
 {
 }
Esempio n. 19
0
 public BezierTool(IOverlayInterface overlay) : base(overlay)
 {
     Preview_CP1 = overlay.ShapeFactory.GetCPCircle();
     Preview_CP2 = overlay.ShapeFactory.GetCPCircle();
 }
Esempio n. 20
0
 public ArcTool(IOverlayInterface overlay) : base(overlay)
 {
     PreviewArc = overlay.ShapeFactory.GetPreviewArc();
     PreviewPie = overlay.ShapeFactory.GetPreviewPie();
 }
Esempio n. 21
0
 public OverlayTool(IOverlayInterface overlay)
 {
     this.overlay = overlay;
 }
Esempio n. 22
0
 public OverlayTool(IOverlayInterface overlay)
 {
     this.overlay = overlay;
 }
Esempio n. 23
0
 public EllipseTool(IOverlayInterface overlay)
     : base(overlay)
 {
     PreviewEllipse = overlay.ShapeFactory.GetPreviewEllipse();
 }
Esempio n. 24
0
 public SelectionTool(IOverlayInterface overlay) : base(overlay)
 {
     SelectionRect = overlay.ShapeFactory.GetSelectionRect();
 }
Esempio n. 25
0
 public GridTool(IOverlayInterface overlay)
     : base(overlay)
 {
     codeToInsert    = " grid ";
     ForcePointsBLTR = true;
 }
 public EllipseTool(IOverlayInterface overlay)
     : base(overlay)
 {
     PreviewEllipse = overlay.ShapeFactory.GetPreviewEllipse();
 }