/// <summary> /// construct a sphere2D object with the specified center and radius values /// </summary> /// <param name="center"></param> /// <param name="radius"></param> public Sphere3D(Point3D center, double radius) { this.center = center; this.radius = radius; }