예제 #1
0
파일: int3x2.cs 프로젝트: CyangYu/Raster
 public static int3x2 int3x2(double3x2 v)
 {
     return(new int3x2(v));
 }
예제 #2
0
파일: int3x2.cs 프로젝트: CyangYu/Raster
 public int3x2(double3x2 v)
 {
     this.c0 = (int3)v.c0;
     this.c1 = (int3)v.c1;
 }