예제 #1
0
 public Sphere()
 {
     R = 0;
     C = new MyPoint();
 }
예제 #2
0
 public Sphere(double _R, MyPoint _center)
 {
     R = _R;
     C = _center;
 }