rotation-velocity.hpp
Go to the documentation of this file.
1 
12 #ifndef SENSORALGORITHMSROTATIONVELOCITYHPP
13 #define SENSORALGORITHMSROTATIONVELOCITYHPP
14 
15 #include <state-observation/api.h>
17 
18 namespace stateObservation
19 {
20 namespace algorithm
21 {
28 class STATE_OBSERVATION_DLLAPI RotationVelocity
29 {
30 public:
32  virtual ~RotationVelocity() {}
33 
35  Vector3 rotationVelocityMeasure(const Vector3 & angVelocityVector, const Matrix3 & orientation) const;
36 
37 protected:
38 };
39 } // namespace algorithm
40 
41 } // namespace stateObservation
42 
43 #endif // SENSORALGORITHMSROTATIONVELOCITYHPP
stateObservation::algorithm::RotationVelocity::~RotationVelocity
virtual ~RotationVelocity()
virtual destructor
Definition: rotation-velocity.hpp:32
stateObservation::Matrix3
Eigen::Matrix3d Matrix3
3x3 Scalar Matrix
Definition: definitions.hpp:109
definitions.hpp
Definitions of types and some structures.
stateObservation::Vector3
Eigen::Vector3d Vector3
3D vector
Definition: definitions.hpp:85
stateObservation::algorithm::RotationVelocity
Implements the gyrometer measurement algorithm.
Definition: rotation-velocity.hpp:28
stateObservation
Definition: bidim-elastic-inv-pendulum-dyn-sys.hpp:20