Changeset 716 for code/branches/FICN/src/misc
- Timestamp:
- Dec 28, 2007, 11:53:59 PM (17 years ago)
- Location:
- code/branches/FICN/src/misc
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/misc/ColourValue.h
r708 r716 1 #include <OgreColourValue.h>2 1 3 2 #include "Math.h" … … 5 4 namespace orxonox 6 5 { 7 typedef Ogre::ColourValue ColourValue;8 6 } -
code/branches/FICN/src/misc/Math.h
r708 r716 1 1 #include <OgreMath.h> 2 #include <OgreVector2.h> 3 #include <OgreVector3.h> 4 #include <OgreVector4.h> 5 #include <OgreMatrix3.h> 6 #include <OgreQuaternion.h> 7 #include <OgreColourValue.h> 2 8 3 9 namespace orxonox … … 5 11 typedef Ogre::Radian Radian; 6 12 typedef Ogre::Degree Degree; 13 typedef Ogre::Vector2 Vector2; 14 typedef Ogre::Vector3 Vector3; 15 typedef Ogre::Vector4 Vector4; 16 typedef Ogre::Matrix3 Matrix3; 17 typedef Ogre::Quaternion Quaternion; 18 typedef Ogre::ColourValue ColourValue; 7 19 } -
code/branches/FICN/src/misc/Matrix3.h
r708 r716 1 #include <OgreMatrix3.h>2 1 3 2 #include "Math.h" … … 5 4 namespace orxonox 6 5 { 7 typedef Ogre::Matrix3 Matrix3;8 6 } -
code/branches/FICN/src/misc/Quaternion.h
r708 r716 1 #include <OgreQuaternion.h>2 1 3 2 #include "Math.h" … … 5 4 namespace orxonox 6 5 { 7 typedef Ogre::Quaternion Quaternion;8 6 } -
code/branches/FICN/src/misc/Vector2.h
r708 r716 1 #include <OgreVector2.h>2 1 3 2 #include "Math.h" … … 5 4 namespace orxonox 6 5 { 7 typedef Ogre::Vector2 Vector2;8 6 } -
code/branches/FICN/src/misc/Vector3.h
r708 r716 1 #include <OgreVector3.h>2 1 3 2 #include "Math.h" … … 5 4 namespace orxonox 6 5 { 7 typedef Ogre::Vector3 Vector3;8 6 } -
code/branches/FICN/src/misc/Vector4.h
r708 r716 1 #include <OgreVector4.h>2 1 3 2 #include "Math.h" … … 5 4 namespace orxonox 6 5 { 7 typedef Ogre::Vector4 Vector4;8 6 }
Note: See TracChangeset
for help on using the changeset viewer.