Changeset 1588 for code/branches/hud/src/util
- Timestamp:
- Jun 11, 2008, 12:21:42 AM (16 years ago)
- Location:
- code/branches/hud/src/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hud/src/util/Convert.h
r1505 r1588 298 298 } 299 299 }; 300 301 // convert to string Shortcut 302 template <class FromType> 303 std::string convertToString(FromType value) 304 { 305 return getConvertedValue<FromType, std::string>(value); 306 } 300 307 301 308 // convert from string -
code/branches/hud/src/util/Math.h
r1566 r1588 39 39 #include <OgreVector4.h> 40 40 #include <OgreMatrix3.h> 41 #include <OgreMatrix4.h> 41 42 #include <OgreQuaternion.h> 42 43 #include <OgreColourValue.h> … … 50 51 typedef Ogre::Vector4 Vector4; 51 52 typedef Ogre::Matrix3 Matrix3; 53 typedef Ogre::Matrix4 Matrix4; 52 54 typedef Ogre::Quaternion Quaternion; 53 55 typedef Ogre::ColourValue ColourValue;
Note: See TracChangeset
for help on using the changeset viewer.