We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
as in the title. if i create a new frame like this: KDL::Frame f1 = f2 * f3;
KDL::Frame f1 = f2 * f3;
frame 1 will stay the same (or become f3 in some cases)
however,
f1.p = f2.p + f3.p; f1.M = f2.M * f3.M;
works perfectly
The text was updated successfully, but these errors were encountered:
This works fine in CI and also on my machine. So without any additional context, I can't help you.
Sorry, something went wrong.
No branches or pull requests
as in the title. if i create a new frame like this:
KDL::Frame f1 = f2 * f3;
frame 1 will stay the same (or become f3 in some cases)
however,
works perfectly
The text was updated successfully, but these errors were encountered: