User Manual 4.0 Spheres
De Wiki
Definition
A sphere is an ellipsoid with equal equatorial and polar radii. Assuming the XYZ coordinate system is such that the sphere is centered and axis-aligned, the spheres' equation is given by:
Implementation
The Sphere object in the SIRIUS library implements the Ellipsoid interface. Please refer to the Javadoc for a complete list of public methods.
Instantiation
The sphere object is built from a centre (Vector3D) and a radius :
Vector3D centre = new Vector3D(1.0, 5.0,-2.0); double radius = 1.2; Sphere sphere = new Sphere(centre, radius);
Usage
Please refer to the [MAT_GEO_Home#HInteractions Interactions with other geometrical objects section] for methods inherited from the Shape interface.