Changeset 173 in flair-src for trunk/lib/FlairSensorActuator/src/Imu.h
- Timestamp:
- 04/26/17 11:12:59 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSensorActuator/src/Imu.h
r137 r173 15 15 16 16 #include <IODevice.h> 17 #include <Vector3D.h> 17 18 18 19 namespace flair { … … 121 122 122 123 /*! 123 * \brief UpdateImu124 * \brief ApplyRotation 124 125 * 125 * The reimplemented class must call this function as soon as IMU datas are 126 *available. \n 126 * The reimplemented class must call this function to rotate IMU datas, before filling the ImuData. \n 127 127 * It handles the data rotation if it was defined. 128 128 * 129 * \param vector vector to apply rotation to 129 130 */ 130 void UpdateImu(); 131 void ApplyRotation(core::Vector3Df& vector); 132 133 /*! 134 * \brief ApplyRotation 135 * 136 * The reimplemented class must call this function to rotate IMU datas, before filling the ImuData. \n 137 * It handles the data rotation if it was defined. 138 * 139 * \param quaternion quaternion to apply rotation to 140 */ 141 void ApplyRotation(core::Quaternion& quaternion); 131 142 132 143 /*!
Note:
See TracChangeset
for help on using the changeset viewer.