public Sphere() { R = 0; C = new MyPoint(); }
public Sphere(double _R, MyPoint _center) { R = _R; C = _center; }