From fbfbbed1ed18eebc9110cd5c9f5aaf383eaacb2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Britto?= Date: Thu, 20 Dec 2018 16:05:10 -0300 Subject: [PATCH] Improve rbs's velocities documentation --- src/samples/RigidBodyState.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/samples/RigidBodyState.hpp b/src/samples/RigidBodyState.hpp index 495ac7ef..439c2815 100644 --- a/src/samples/RigidBodyState.hpp +++ b/src/samples/RigidBodyState.hpp @@ -55,13 +55,15 @@ namespace base { namespace samples { */ base::Matrix3d cov_orientation; - /** Velocity in m/s of sourceFrame expressed in targetFrame */ + /** Velocity in m/s of sourceFrame relative to targetFrame, + * expressed in targetFrame */ base::Vector3d velocity; /** Covariance of the velocity */ base::Matrix3d cov_velocity; - /** Angular Velocity as an axis-angle representation in sourceFrame (body fixed frame) + /** Angular Velocity of sourceFrame relative to targetFrame, + * expressed in sourceFrame, as an axis-angle representation * * The direction of the vector is the axis, its length the speed */ base::Vector3d angular_velocity;