Sphere structure. (In 3D space) More...
#include <sphere.hpp>
Public Member Functions | |
Sphere (float radius=0.0f, f32x4 position=f32x4::zero) noexcept | |
Creates a new sphere structure. | |
float | getRadius () const noexcept |
Returns sphere radius. | |
void | setRadius (float radius) noexcept |
Sets sphere radius. | |
f32x4 | getPosition () const noexcept |
Returns position of the sphere in 3D space. | |
void | setPosition (f32x4 position) noexcept |
Sets position of the sphere in 3D space. | |
bool | operator== (const Sphere &v) const noexcept |
bool | operator!= (const Sphere &v) const noexcept |
Static Public Attributes | |
static const Sphere | one = Sphere(0.5f) |
static const Sphere | two = Sphere(1.0f) |
static const Sphere | half = Sphere(0.25f) |
Protected Attributes | |
f32x4 | posRad |
Sphere structure. (In 3D space)
Defined by a position point and radius.
Creates a new sphere structure.
radius | target sphere radius |
position | sphere position in 3D space |
|
inlinenoexcept |
Sets sphere radius.
radius | target sphere radius |
|
inlinenoexcept |
Sets position of the sphere in 3D space.
position | target sphere position in 3D space |