예제 #1
0
파일: fp2.cs 프로젝트: Vengarioth/FPMath
 public fp2(fp x, fp y)
 {
     this.x = x;
     this.y = y;
 }
예제 #2
0
 public fp3(fp x, fp y, fp z)
 {
     this.x = x;
     this.y = y;
     this.z = z;
 }