Changeset 6704 for OpenSceneGraph/trunk/include/osg/Matrix
- Timestamp:
- 05/20/07 13:45:09 (5 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/Matrix (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/Matrix
r5328 r6704 18 18 #include <osg/Matrixf> 19 19 20 #define OSG_USE_DOUBLE_MATRICES 121 22 20 namespace osg { 23 21 24 #ifdef OSG_USE_DOUBLE_MATRICES 22 #ifdef OSG_USE_FLOAT_MATRIX 23 typedef Matrixf Matrix; 24 typedef RefMatrixf RefMatrix; 25 #else 25 26 typedef Matrixd Matrix; 26 27 typedef RefMatrixd RefMatrix; 27 #else28 typedef Matrixf Matrix;29 typedef RefMatrixf RefMatrix;30 31 28 #endif 32 29
