Beispiel #1
0
 public bool Equals(NormalizedShort2 other)
 {
     return(packedValue.Equals(other.packedValue));
 }
Beispiel #2
0
 void IPackedVector.PackFromVector4(Vector4 vector)
 {
     this.short2Packed = NormalizedShort2.PackInTwo(vector.X, vector.Y);
 }
Beispiel #3
0
 public bool Equals(NormalizedShort2 other)
 {
     return(this.short2Packed.Equals(other.short2Packed));
 }
Beispiel #4
0
 public NormalizedShort2(float x, float y)
 {
     this.short2Packed = NormalizedShort2.PackInTwo(x, y);
 }
Beispiel #5
0
 public NormalizedShort2(Vector2 vector)
 {
     this.short2Packed = NormalizedShort2.PackInTwo(vector.X, vector.Y);
 }
Beispiel #6
0
 public bool Equals(NormalizedShort2 other)
 {
     throw new NotImplementedException();
 }