Exemplo n.º 1
0
 public half3(double3 v)
 {
     this.x = (half)v.x;
     this.y = (half)v.y;
     this.z = (half)v.z;
 }
Exemplo n.º 2
0
 public half2(double v)
 {
     this.x = (half)v;
     this.y = (half)v;
 }
Exemplo n.º 3
0
 public double2(half v)
 {
     this.x = v;
     this.y = v;
 }
Exemplo n.º 4
0
 public static half2 half2(half x, half y)
 {
     return(new half2(x, y));
 }
Exemplo n.º 5
0
 public half2(float v)
 {
     this.x = (half)v;
     this.y = (half)v;
 }
Exemplo n.º 6
0
 public half2(half x, half y)
 {
     this.x = x;
     this.y = y;
 }
Exemplo n.º 7
0
 public half2(half v)
 {
     this.x = v;
     this.y = v;
 }
Exemplo n.º 8
0
 public half3(half x, half y, half z)
 {
     this.x = x;
     this.y = y;
     this.z = z;
 }
Exemplo n.º 9
0
 public half3(half x, half2 yz)
 {
     this.x = x;
     this.y = yz.x;
     this.z = yz.y;
 }
Exemplo n.º 10
0
 public static half3 half3(half2 xy, half z)
 {
     return(new half3(xy, z));
 }
Exemplo n.º 11
0
 public static half3 half3(half v)
 {
     return(new half3(v));
 }
Exemplo n.º 12
0
 public static half3 half3(half x, half2 yz)
 {
     return(new half3(x, yz));
 }
Exemplo n.º 13
0
 public static half3 half3(half x, half y, half z)
 {
     return(new half3(x, y, z));
 }
Exemplo n.º 14
0
 public DebuggerProxy(half3 v)
 {
     x = v.x;
     y = v.y;
     z = v.z;
 }
Exemplo n.º 15
0
 public static half half(half x)
 {
     return(new half(x));
 }
Exemplo n.º 16
0
 public half3(half2 xy, half z)
 {
     this.x = xy.x;
     this.y = xy.y;
     this.z = z;
 }
Exemplo n.º 17
0
 public static uint hash(half v)
 {
     return(v.value * 0x745ED837u + 0x816EFB5Du);
 }
Exemplo n.º 18
0
 public half3(half3 xyz)
 {
     this.x = xyz.x;
     this.y = xyz.y;
     this.z = xyz.z;
 }
Exemplo n.º 19
0
 public half2(half2 xy)
 {
     this.x = xy.x;
     this.y = xy.y;
 }
Exemplo n.º 20
0
 public half3(half v)
 {
     this.x = v;
     this.y = v;
     this.z = v;
 }
Exemplo n.º 21
0
 public DebuggerProxy(half2 v)
 {
     x = v.x;
     y = v.y;
 }
Exemplo n.º 22
0
 public half3(float v)
 {
     this.x = (half)v;
     this.y = (half)v;
     this.z = (half)v;
 }
Exemplo n.º 23
0
 public static half2 half2(half v)
 {
     return(new half2(v));
 }
Exemplo n.º 24
0
 public half3(float3 v)
 {
     this.x = (half)v.x;
     this.y = (half)v.y;
     this.z = (half)v.z;
 }
Exemplo n.º 25
0
 public half2(float2 v)
 {
     this.x = (half)v.x;
     this.y = (half)v.y;
 }
Exemplo n.º 26
0
 public float2(half v)
 {
     this.x = v;
     this.y = v;
 }
Exemplo n.º 27
0
 public half2(double2 v)
 {
     this.x = (half)v.x;
     this.y = (half)v.y;
 }
Exemplo n.º 28
0
 public static float2 float2(half v)
 {
     return(new float2(v));
 }
Exemplo n.º 29
0
 public static double2 double2(half v)
 {
     return(new double2(v));
 }
Exemplo n.º 30
0
 public half3(double v)
 {
     this.x = (half)v;
     this.y = (half)v;
     this.z = (half)v;
 }