示例#1
0
文件: UShort4.cs 项目: yongaru/uno
 public UShort4(UShort2 xy, UShort2 zw)
 {
     this.X = xy.X;
     this.Y = xy.Y;
     this.Z = zw.X;
     this.W = zw.Y;
 }
示例#2
0
文件: UShort4.cs 项目: yongaru/uno
 public UShort4(ushort x, UShort2 yz, ushort w)
 {
     this.X = x;
     this.Y = yz.X;
     this.Z = yz.Y;
     this.W = w;
 }
示例#3
0
文件: UShort4.cs 项目: yongaru/uno
 public UShort4(ushort x, ushort y, UShort2 zw)
 {
     this.X = x;
     this.Y = y;
     this.Z = zw.X;
     this.W = zw.Y;
 }
示例#4
0
文件: UShort4.cs 项目: yongaru/uno
 public UShort4(UShort2 xy, ushort z, ushort w)
 {
     this.X = xy.X;
     this.Y = xy.Y;
     this.Z = z;
     this.W = w;
 }