public bool Equals(NormalizedShort2 other) { return(packedValue.Equals(other.packedValue)); }
void IPackedVector.PackFromVector4(Vector4 vector) { this.short2Packed = NormalizedShort2.PackInTwo(vector.X, vector.Y); }
public bool Equals(NormalizedShort2 other) { return(this.short2Packed.Equals(other.short2Packed)); }
public NormalizedShort2(float x, float y) { this.short2Packed = NormalizedShort2.PackInTwo(x, y); }
public NormalizedShort2(Vector2 vector) { this.short2Packed = NormalizedShort2.PackInTwo(vector.X, vector.Y); }
public bool Equals(NormalizedShort2 other) { throw new NotImplementedException(); }