public UInt16N4(float x, float y, float z, float w) { this.x = new UInt16N(x); this.y = new UInt16N(y); this.z = new UInt16N(z); this.w = new UInt16N(w); }
public UInt16N4(ushort x, ushort y, ushort z, ushort w) { this.x = new UInt16N(x); this.y = new UInt16N(y); this.z = new UInt16N(z); this.w = new UInt16N(w); }
public override bool Equals(object obj) { if ((obj == null) || !(obj is UInt16N)) { return(false); } return(UInt16N.Equals(this, (UInt16N)obj)); }
public UInt16N2(float x, float y) { this.x = new UInt16N(x); this.y = new UInt16N(y); }
public UInt16N2(ushort x, ushort y) { this.x = new UInt16N(x); this.y = new UInt16N(y); }
public bool Equals(UInt16N value) { return(UInt16N.Equals(this, value)); }
public static bool Equals(UInt16N value1, UInt16N value2) { return(value1.bits.Equals(value2.bits)); }