Exemple #1
0
 public uint2x2(float2x2 v)
 {
     this.c0 = (uint2)v.c0;
     this.c1 = (uint2)v.c1;
 }
Exemple #2
0
 public static uint2x2 uint2x2(float2x2 v)
 {
     return(new uint2x2(v));
 }
Exemple #3
0
 public double2x2(float2x2 v)
 {
     this.c0 = v.c0;
     this.c1 = v.c1;
 }
Exemple #4
0
 public static double2x2 double2x2(float2x2 v)
 {
     return(new double2x2(v));
 }
Exemple #5
0
 public static int2x2 int2x2(float2x2 v)
 {
     return(new int2x2(v));
 }