|
| Ray (f32x4 origin, f32x4 direction, bool normalize=true) noexcept |
| Creates a new ray structure. (In 3D space)
|
|
| Ray ()=default |
| Creates a new empty ray structure.
|
|
f32x4 | getDirection () const noexcept |
| Returns ray direction vector in 3D space.
|
|
void | setDirection (f32x4 direction, bool normalize=true) noexcept |
| Sets ray direction vector in 3D space.
|
|
const u32x4 & | getParallel () const noexcept |
| Returns which of the ray direction axes are parallel.
|
|
void | normalize () noexcept |
| Normalizes ray direction vector.
|
|
Ray | operator* (f32x4 v) const noexcept |
|
Ray | operator/ (f32x4 v) const noexcept |
|
Ray | operator+ (f32x4 v) const noexcept |
|
Ray | operator- (f32x4 v) const noexcept |
|
Ray & | operator*= (f32x4 v) noexcept |
|
Ray & | operator/= (f32x4 v) noexcept |
|
Ray & | operator+= (f32x4 v) noexcept |
|
Ray & | operator-= (f32x4 v) noexcept |
|
bool | operator== (const Ray &v) const noexcept |
|
bool | operator!= (const Ray &v) const noexcept |
|
|
static const Ray | left = Ray(f32x4::zero, f32x4(-1.0f, 0.0f, 0.0f, 0.0f), false) |
|
static const Ray | right = Ray(f32x4::zero, f32x4(1.0f, 0.0f, 0.0f, 0.0f), false) |
|
static const Ray | bottom = Ray(f32x4::zero, f32x4(0.0f, -1.0f, 0.0f, 0.0f), false) |
|
static const Ray | top = Ray(f32x4::zero, f32x4(0.0f, 1.0f, 0.0f, 0.0f), false) |
|
static const Ray | back = Ray(f32x4::zero, f32x4(0.0f, 0.0f, -1.0f, 0.0f), false) |
|
static const Ray | front = Ray(f32x4::zero, f32x4(0.0f, 0.0f, 1.0f, 0.0f), false) |
|
Infinite ray structure. (In 3D space)
Defined by an origin point and direction vector.