User Manual 3.4.1 Spheres
Aller à la navigation
Aller à la recherche
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 [MAT_GEO_EllipsoidInterface 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.