예제 #1
0
 public Point2D(Entity2D parent) : this()
 {
     this.Parent = parent;
     this.Points = new List <Point3D>()
     {
         this.Sketch.RefPlane.GetPoint3D(Point)
     };
 }
예제 #2
0
파일: Horizontal.cs 프로젝트: ondrej11/o106
 public Horizontal(Entity2D entity)
     : base(entity)
 {
 }
예제 #3
0
파일: Point2D.cs 프로젝트: ondrej11/o106
 public Point2D(Entity2D parent, Point point)
     : this(parent)
 {
     this.Point = point;
 }
예제 #4
0
파일: Point2D.cs 프로젝트: ondrej11/o106
 public Point2D(Entity2D parent)
     : this()
 {
     this.Parent = parent;
     this.Points = new List<Point3D>() { this.Sketch.RefPlane.GetPoint3D(Point) };
 }
예제 #5
0
파일: Lock.cs 프로젝트: ondrej11/o106
 public Lock(Entity2D entity)
     : base(entity)
 {
 }
예제 #6
0
 public Point2D(Entity2D parent, Point point) : this(parent)
 {
     this.Point = point;
 }
예제 #7
0
파일: Vertical.cs 프로젝트: ondrej11/o106
 public Vertical(Entity2D entity)
     : base(entity)
 {
 }