public static float2 float2(uint2 v) { return(new float2(v)); }
public float2(uint2 v) { this.x = v.x; this.y = v.y; }