Ejemplo n.º 1
0
 public vec2(double x, double y, unitsEnum xunits, unitsEnum yunits)
 {
     this.x      = x;
     this.y      = y;
     this.xunits = xunits;
     this.yunits = yunits;
 }
Ejemplo n.º 2
0
 public vec2Type()
 {
     this.xField      = 1.0;
     this.yField      = 1.0;
     this.xunitsField = unitsEnum.fraction;
     this.yunitsField = unitsEnum.fraction;
 }
Ejemplo n.º 3
0
 /// <remarks/>
 public vec2Type()
 {
     this.xField = 1;
     this.yField = 1;
     this.xunitsField = unitsEnum.fraction;
     this.yunitsField = unitsEnum.fraction;
 }
Ejemplo n.º 4
0
 public vec2(double x, double y, unitsEnum xunits, unitsEnum yunits)
 {
     this.x = x;
     this.y = y;
     this.xunits = xunits;
     this.yunits = yunits;
 }