-
Notifications
You must be signed in to change notification settings - Fork 30
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
save joint limits of space in MetaSkeletonStateSpaceSaver #219
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd like to make some minor changes to the printed error messages, but otherwise this looks good. Thanks!
@@ -16,7 +18,20 @@ MetaSkeletonStateSpaceSaver::~MetaSkeletonStateSpaceSaver() | |||
std::cerr << "[MetaSkeletonStateSpaceSaver] The number of DOFs in the " | |||
<< "MetaSkeleton does not match the saved state."; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
saved state
-> saved position
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
if (mPositionLowerLimits.size() != mSpace->getMetaSkeleton()->getNumDofs()) | ||
{ | ||
std::cerr << "[MetaSkeletonStateSpaceSaver] The number of DOFs in the " | ||
<< "MetaSkeleton does not match the save joint lower limits."; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
save joint lower limits
-> saved position lower limits
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
if (mPositionUpperLimits.size() != mSpace->getMetaSkeleton()->getNumDofs()) | ||
{ | ||
std::cerr << "[MetaSkeletonStateSpaceSaver] The number of DOFs in the " | ||
<< "MetaSkeleton does not match the save joint upper limits."; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
save joint upper limits
-> saved position upper limits
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
resolving personalrobotics/aikido #218