public uint2x2(float2x2 v) { this.c0 = (uint2)v.c0; this.c1 = (uint2)v.c1; }
public static uint2x2 uint2x2(float2x2 v) { return(new uint2x2(v)); }
public double2x2(float2x2 v) { this.c0 = v.c0; this.c1 = v.c1; }
public static double2x2 double2x2(float2x2 v) { return(new double2x2(v)); }
public static int2x2 int2x2(float2x2 v) { return(new int2x2(v)); }