Exemplo n.º 1
0
 public UShort4(UShort2 xy, UShort2 zw)
 {
     this.X = xy.X;
     this.Y = xy.Y;
     this.Z = zw.X;
     this.W = zw.Y;
 }
Exemplo n.º 2
0
 public UShort4(ushort x, UShort2 yz, ushort w)
 {
     this.X = x;
     this.Y = yz.X;
     this.Z = yz.Y;
     this.W = w;
 }
Exemplo n.º 3
0
 public UShort4(ushort x, ushort y, UShort2 zw)
 {
     this.X = x;
     this.Y = y;
     this.Z = zw.X;
     this.W = zw.Y;
 }
Exemplo n.º 4
0
 public UShort4(UShort2 xy, ushort z, ushort w)
 {
     this.X = xy.X;
     this.Y = xy.Y;
     this.Z = z;
     this.W = w;
 }