-
Notifications
You must be signed in to change notification settings - Fork 37
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
Catkinize pr2_simulator #2
Comments
Are there any updates on how far the catkinization process is? |
Sorry; there is no progress and no plan for anyone inside of Willow Garage to work on this as far as I'm aware. (I no longer work for WG) If you (or anyone else) are interested in working on it, I can review your pull requests or grant you push access to the repository. You may also want to post on the pr2-users mailing list to get a discussion going about the status of PR2 on Hydro. |
diff -r 200288dae730 src/parser_urdf.cc --- a/src/parser_urdf.cc Sat Nov 16 00:44:08 2013 +0100 +++ b/src/parser_urdf.cc Thu Nov 21 19:18:25 2013 -0800 @@ -2772,7 +2772,21 @@ // read pose and save it // remove the tag for now - if (poseKey) (*_blobIt)->RemoveChild(poseKey); + sdf::Pose localTransform; + if (poseKey) + { + // create transform from existing pose + // \TODO: FIXME: fill below with values from poseKey + localTransform.pos = sdf::Vector3(0, 0, 0); + localTransform.rot = sdf::Quaternion(0, 0, 0); + + // remove posse element + (*_blobIt)->RemoveChild(poseKey); + } + + // update _reductionTransform with original pose element + // specified in projector + _reductionTransform = localTransform + _reductionTransform; // convert reductionTransform to values urdf::Vector3 reductionXyz(_reductionTransform.pos.x, |
The only thing still blocking this is the projector transform problem |
Any updates on the projector transform? |
Catkinize pr2_simulator. Depends on catkinizing and releasing:
The text was updated successfully, but these errors were encountered: