示例#1
0
 public bool3(bool2 xy, bool z)
 {
     this.x = xy.x;
     this.y = xy.y;
     this.z = z;
 }
示例#2
0
 public static bool3 bool3(bool2 xy, bool z)
 {
     return(new bool3(xy, z));
 }
示例#3
0
 public bool3(bool x, bool2 yz)
 {
     this.x = x;
     this.y = yz.x;
     this.z = yz.y;
 }
示例#4
0
 public static bool3 bool3(bool x, bool2 yz)
 {
     return(new bool3(x, yz));
 }
示例#5
0
 public bool2x2(bool v)
 {
     this.c0 = v;
     this.c1 = v;
 }
示例#6
0
 public bool2x2(bool m00, bool m01,
                bool m10, bool m11)
 {
     this.c0 = new bool2(m00, m10);
     this.c1 = new bool2(m01, m11);
 }
示例#7
0
 public bool2x2(bool2 c0, bool2 c1)
 {
     this.c0 = c0;
     this.c1 = c1;
 }
示例#8
0
 public static bool2x2 bool2x2(bool2 c0, bool2 c1)
 {
     return(new bool2x2(c0, c1));
 }