Ejemplo n.º 1
0
 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);
 }
Ejemplo n.º 2
0
 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);
 }
Ejemplo n.º 3
0
        public override bool Equals(object obj)
        {
            if ((obj == null) || !(obj is UInt16N))
            {
                return(false);
            }

            return(UInt16N.Equals(this, (UInt16N)obj));
        }
Ejemplo n.º 4
0
 public UInt16N2(float x, float y)
 {
     this.x = new UInt16N(x);
     this.y = new UInt16N(y);
 }
Ejemplo n.º 5
0
 public UInt16N2(ushort x, ushort y)
 {
     this.x = new UInt16N(x);
     this.y = new UInt16N(y);
 }
Ejemplo n.º 6
0
 public bool Equals(UInt16N value)
 {
     return(UInt16N.Equals(this, value));
 }
Ejemplo n.º 7
0
 public static bool Equals(UInt16N value1, UInt16N value2)
 {
     return(value1.bits.Equals(value2.bits));
 }