This is the documentation for Enlighten.
class Geo GeoBoundingSphere
class Geo::GeoBoundingSphere
This class represents a bounding sphere.
It is stored as a v128, with position in the first 3 components, and radius in w.
Variables
Name | Description |
|---|---|
Geo::v128 m_Sphere | The v128 representation. |
Functions
Name | Description |
|---|---|
Constructor - makes an empty bounding sphere. | |
Constructor - makes a bounding sphere. | |
Copy Constructor. | |
Conversion Constructor. | |
Conversion Constructor. | |
Return the center of this bounding sphere. | |
Return the sphere radius. | |
Set the center of this bounding sphere. | |
Set the sphere radius. |
Geo::GeoBoundingSphere::GeoBoundingSphere
public: GeoBoundingSphere()
Constructor - makes an empty bounding sphere.
Geo::GeoBoundingSphere::GeoBoundingSphere
public: GeoBoundingSphere
(
v128 center,
float radius
)
Constructor - makes a bounding sphere.
Geo::GeoBoundingSphere::GeoBoundingSphere
public: GeoBoundingSphere
(
const GeoBoundingSphere & from
)
Copy Constructor.