9 #ifndef _LIBALMATH_ALMATH_TYPES_ALAXISMASK_H_
10 #define _LIBALMATH_ALMATH_TYPES_ALAXISMASK_H_
13 #include <almath/api.h>
38 static const int AXIS_MASK_X = 1;
39 static const int AXIS_MASK_Y = 2;
40 static const int AXIS_MASK_XY = 3;
41 static const int AXIS_MASK_Z = 4;
42 static const int AXIS_MASK_WX = 8;
43 static const int AXIS_MASK_WY = 16;
44 static const int AXIS_MASK_WZ = 32;
45 static const int AXIS_MASK_WYWZ = 48;
46 static const int AXIS_MASK_ALL = 63;
47 static const int AXIS_MASK_VEL = 7;
48 static const int AXIS_MASK_ROT = 56;
49 static const int AXIS_MASK_NONE = 0;
50 static const int AXIS_MASK_PLANEZ = 28;
55 ALMATH_API
bool isAxisMask(
const int pAxisMask);
58 #endif // _LIBALMATH_ALMATH_TYPES_ALAXISMASK_H_
ALMATH_API bool isAxisMask(const int pAxisMask)
Validates an AxisMask.
std::bitset< 6 > AXIS_MASK
Definition of an AXIS_MASK as a bit set.