Example #1
0
 public Vector4Save(Vector4Save vector)
 {
     x = vector.x;
     y = vector.y;
     z = vector.z;
     w = vector.w;
 }
Example #2
0
 public Vector4Save(Vector4Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
     this.z = vector.z;
     this.w = vector.w;
 }
Example #3
0
 public Vector2Save(Vector4Save vector)
 {
     x = vector.x;
     y = vector.y;
 }
Example #4
0
 public Vector2Save(Vector4Save vector)
 {
     this.x = vector.x;
     this.y = vector.y;
 }