Esempio n. 1
0
 public Text3DPoint(Text3DPointType type, int x, int y)
     : this(x, y)
 {
     this.Type = type;
     this.X    = x;
     this.Y    = y;
 }
Esempio n. 2
0
 public Text3DPoint(double x, double y)
 {
     this.Type = Text3DPointType.StartPoint;
     this.X    = Point3D.MmToInt(x);
     this.Y    = Point3D.MmToInt(y);
 }
Esempio n. 3
0
        public int             Y; // in 1/1000 mm

        public Text3DPoint(int x, int y)
        {
            this.Type = Text3DPointType.StartPoint;
            this.X    = x;
            this.Y    = y;
        }