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