19 Double3(
double inX,
double inY,
double inZ) : x(inX), y(inY), z(inZ) { }
21 double operator [] (
int inCoordinate)
const
24 return *(&x + inCoordinate);
27 bool operator == (
const Double3 &inRHS)
const
29 return x == inRHS.
x && y == inRHS.
y && z == inRHS.
z;
32 bool operator != (
const Double3 &inRHS)
const
34 return x != inRHS.
x || y != inRHS.
y || z != inRHS.
z;
42static_assert(is_trivial<Double3>(),
"Is supposed to be a trivial type!");
#define JPH_NAMESPACE_END
Definition Core.h:240
#define JPH_NAMESPACE_BEGIN
Definition Core.h:234
#define JPH_MAKE_HASHABLE(type,...)
Definition HashCombine.h:87
#define JPH_ASSERT(...)
Definition IssueReporting.h:33
#define JPH_OVERRIDE_NEW_DELETE
Macro to override the new and delete functions.
Definition Memory.h:29
Class that holds 3 doubles. Used as a storage class. Convert to DVec3 for calculations.
Definition Double3.h:13
double z
Definition Double3.h:39
double y
Definition Double3.h:38
JPH_OVERRIDE_NEW_DELETE Double3()=default
Intentionally not initialized for performance reasons.
Double3(const Double3 &inRHS)=default
double x
Definition Double3.h:37
Double3(double inX, double inY, double inZ)
Definition Double3.h:19