Exemplo n.º 1
0
Arquivo: Short2.cs Projeto: raizam/FNA
 public bool Equals(Short2 other)
 {
     return(this == other);
 }
Exemplo n.º 2
0
 void IPackedVector.PackFromVector4(Vector4 vector)
 {
     _short2Packed = Short2.PackInTwo(vector.X, vector.Y);
 }
Exemplo n.º 3
0
 public bool Equals(Short2 other)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 4
0
 public Short2(float x, float y)
 {
     this._short2Packed = Short2.PackInTwo(x, y);
 }
Exemplo n.º 5
0
 public Short2(Vector2 vector)
 {
     this._short2Packed = Short2.PackInTwo(vector.X, vector.Y);
 }
Exemplo n.º 6
0
 public Short2(Single x, Single y)
 {
     short2Packed = Short2.PackInTwo(x, y);
 }