Example #1
0
 public static float2 float2(uint2 v)
 {
     return(new float2(v));
 }
Example #2
0
 public float2(uint2 v)
 {
     this.x = v.x;
     this.y = v.y;
 }