4#ifdef StevEngine_PHYSICS
6#include <Jolt/Geometry/AABox.h>
9namespace StevEngine::Utilities {
37 Range3(
double lowX,
double highX,
double lowY,
double highY,
double lowZ,
double highZ);
59 #ifdef StevEngine_PHYSICS
60 operator JPH::AABox()
const;
62 Range3(
const JPH::AABox& other);
Range3 & operator=(const JPH::AABox &other)
Assign from Jolt AABB.
Definition Range3.cpp:35
Vector3 High
Maximum point (upper bounds)
Definition Range3.hpp:22
Vector3 GetSize() const
Get size of range.
Definition Range3.cpp:27
Vector3 Low
Minimum point (lower bounds)
Definition Range3.hpp:21
Range3()
Create empty range at origin.
Definition Range3.cpp:10
Vector3 GetCenter() const
Get center point of range.
Definition Range3.cpp:23
3D vector class
Definition Vector3.hpp:19