Example #1
0
 public static double2x3 double2x3(float2x3 v)
 {
     return(new double2x3(v));
 }
Example #2
0
 public double2x3(float2x3 v)
 {
     this.c0 = v.c0;
     this.c1 = v.c1;
     this.c2 = v.c2;
 }