Ejemplo n.º 1
0
 public Vector(float x, float y, float z, float scale)
 {
     this.scale = scale;
     this.x     = new FixedPoint(x, scale);
     this.y     = new FixedPoint(y, scale);
     this.z     = new FixedPoint(z, scale);
 }
Ejemplo n.º 2
0
 public Vertex(float x, float y, float z)
 {
     this.x = new FixedPoint(x, scale);
     this.y = new FixedPoint(y, scale);
     this.z = new FixedPoint(z, scale);
 }
Ejemplo n.º 3
0
 public Vector()
 {
     this.x = new FixedPoint(0f, scale);
     this.y = new FixedPoint(0f, scale);
     this.z = new FixedPoint(0f, scale);
 }
Ejemplo n.º 4
0
 public Vertex()
 {
     this.x = new FixedPoint(0f, scale);
     this.y = new FixedPoint(0f, scale);
     this.z = new FixedPoint(0f, scale);
 }
Ejemplo n.º 5
0
 public Vertex(float x, float y, float z, float scale)
 {
     this.scale = scale;
     this.x = new FixedPoint(x, scale);
     this.y = new FixedPoint(y, scale);
     this.z = new FixedPoint(z, scale);
 }
Ejemplo n.º 6
0
 public Vertex()
 {
     this.x = new FixedPoint(0f, scale);
     this.y = new FixedPoint(0f, scale);
     this.z = new FixedPoint(0f, scale);
 }
Ejemplo n.º 7
0
 public Vector(float x, float y, float z)
 {
     this.x = new FixedPoint(x, scale);
     this.y = new FixedPoint(y, scale);
     this.z = new FixedPoint(z, scale);
 }
Ejemplo n.º 8
0
 public Vector()
 {
     this.x = new FixedPoint(0f, scale);
     this.y = new FixedPoint(0f, scale);
     this.z = new FixedPoint(0f, scale);
 }