Changeset 10443 for code/branches/cpp11/src/libraries/tools
- Timestamp:
- May 17, 2015, 9:45:02 PM (10 years ago)
- Location:
- code/branches/cpp11/src/libraries/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11/src/libraries/tools/BulletDebugDrawer.h
r10277 r10443 13 13 #include <btBulletCollisionCommon.h> 14 14 #include <OgreFrameListener.h> 15 #include <OgreVector3.h> 16 #include <OgreColourValue.h> 15 17 16 18 namespace orxonox -
code/branches/cpp11/src/libraries/tools/OgreBulletUtils.h
r10262 r10443 10 10 11 11 #include "tools/ToolsPrereqs.h" 12 #include <OgreVector3.h> 13 #include <OgreQuaternion.h> 14 #include <OgreColourValue.h> 15 #include <OgreMatrix3.h> 16 #include <OgreMatrix4.h> 12 17 13 18 namespace orxonox … … 42 47 inline Ogre::Matrix3 matrix3(const btMatrix3x3& matrix) 43 48 { 44 return Matrix3(49 return Ogre::Matrix3( 45 50 matrix[0][0], matrix[0][1], matrix[0][2], 46 51 matrix[1][0], matrix[1][1], matrix[1][2],
Note: See TracChangeset
for help on using the changeset viewer.