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