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