-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Darius
committed
Mar 15, 2018
1 parent
f2878e7
commit 9fb54cf
Showing
124 changed files
with
14,492 additions
and
7,495 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
/** | ||
* Contains axes definition. | ||
* \file IceAxes.h | ||
* \author Pierre Terdiman | ||
* \date January, 29, 2000 | ||
*/ | ||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
// Include Guard | ||
#ifndef __ICEAXES_H__ | ||
#define __ICEAXES_H__ | ||
|
||
enum PointComponent | ||
{ | ||
_X = 0, | ||
_Y = 1, | ||
_Z = 2, | ||
_W = 3, | ||
|
||
_FORCE_DWORD = 0x7fffffff | ||
}; | ||
|
||
enum AxisOrder | ||
{ | ||
AXES_XYZ = (_X)|(_Y<<2)|(_Z<<4), | ||
AXES_XZY = (_X)|(_Z<<2)|(_Y<<4), | ||
AXES_YXZ = (_Y)|(_X<<2)|(_Z<<4), | ||
AXES_YZX = (_Y)|(_Z<<2)|(_X<<4), | ||
AXES_ZXY = (_Z)|(_X<<2)|(_Y<<4), | ||
AXES_ZYX = (_Z)|(_Y<<2)|(_X<<4), | ||
|
||
AXES_FORCE_DWORD = 0x7fffffff | ||
}; | ||
|
||
class ICEMATHS_API Axes | ||
{ | ||
public: | ||
|
||
inline_ Axes(AxisOrder order) | ||
{ | ||
mAxis0 = (order ) & 3; | ||
mAxis1 = (order>>2) & 3; | ||
mAxis2 = (order>>4) & 3; | ||
} | ||
inline_ ~Axes() {} | ||
|
||
udword mAxis0; | ||
udword mAxis1; | ||
udword mAxis2; | ||
}; | ||
|
||
#endif // __ICEAXES_H__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.