Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make explicit that body fixed frame is the sourceFrame #100

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/samples/RigidBodyState.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 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;
Expand Down