Example #1
0
 public Sphere3(double x, double y, double z, double radius)
 {
     this.Center = new Point3(x, y, z);
     this.Radius = radius;
 }
Example #2
0
 public Sphere3(Point3 center, double radius)
 {
     this.Center = center;
     this.Radius = radius;
 }