Ejemplo n.º 1
0
 public Vector4Save(Vector4Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
     this.z = vector.z;
     this.w = vector.w;
 }
Ejemplo n.º 2
0
 public Vector2Save(Vector4Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
 }