示例#1
0
 public Int16N4(short x, short y, short z, short w)
 {
     this.x = new Int16N(x);
     this.y = new Int16N(y);
     this.z = new Int16N(z);
     this.w = new Int16N(w);
 }
示例#2
0
 public Int16N4(float x, float y, float z, float w)
 {
     this.x = new Int16N(x);
     this.y = new Int16N(y);
     this.z = new Int16N(z);
     this.w = new Int16N(w);
 }
示例#3
0
        public override bool Equals(object obj)
        {
            if ((obj == null) || !(obj is Int16N))
            {
                return(false);
            }

            return(Int16N.Equals(this, (Int16N)obj));
        }
示例#4
0
 public bool Equals(Int16N value)
 {
     return(Int16N.Equals(this, value));
 }
示例#5
0
 public static bool Equals(Int16N value1, Int16N value2)
 {
     return(value1.bits.Equals(value2.bits));
 }
示例#6
0
 public Int16N2(float x, float y)
 {
     this.x = new Int16N(x);
     this.y = new Int16N(y);
 }
示例#7
0
 public Int16N2(short x, short y)
 {
     this.x = new Int16N(x);
     this.y = new Int16N(y);
 }
示例#8
0
 public Int16N3(float x, float y, float z)
 {
     this.x = new Int16N(x);
     this.y = new Int16N(y);
     this.z = new Int16N(z);
 }
示例#9
0
 public Int16N3(short x, short y, short z)
 {
     this.x = new Int16N(x);
     this.y = new Int16N(y);
     this.z = new Int16N(z);
 }