Esempio n. 1
0
 public Point2D(Entity2D parent) : this()
 {
     this.Parent = parent;
     this.Points = new List <Point3D>()
     {
         this.Sketch.RefPlane.GetPoint3D(Point)
     };
 }
Esempio n. 2
0
 public Horizontal(Entity2D entity)
     : base(entity)
 {
 }
Esempio n. 3
0
 public Point2D(Entity2D parent, Point point)
     : this(parent)
 {
     this.Point = point;
 }
Esempio n. 4
0
 public Point2D(Entity2D parent)
     : this()
 {
     this.Parent = parent;
     this.Points = new List<Point3D>() { this.Sketch.RefPlane.GetPoint3D(Point) };
 }
Esempio n. 5
0
 public Lock(Entity2D entity)
     : base(entity)
 {
 }
Esempio n. 6
0
 public Point2D(Entity2D parent, Point point) : this(parent)
 {
     this.Point = point;
 }
Esempio n. 7
0
 public Vertical(Entity2D entity)
     : base(entity)
 {
 }