-
Notifications
You must be signed in to change notification settings - Fork 8
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
Add Panda robot model #2
Conversation
I want to test this locally but the PR looks good to me. Though, I would wait before merging because I'm not actually sure whether the Actually, I found a bug in sdformat that prevents using relative paths if the model is urdf. Instead, if it gets converted to an sdf, relative meshes are loaded correctly. At this point we still have to rely on The same comment applies to #1. |
65cb7d9
to
26d0b60
Compare
…_gazebo as detailed in the PR description)
26d0b60
to
d08ca4d
Compare
Without the |
I copy here for future reference a comment by @paolo-viceconte from a private repo:
Related to gazebosim/gz-rendering#89. Tested with OGRE 1. |
Given the most recent updates from gazebosim/gz-rendering#89, the |
The
Panda.urdf
model was obtained from the models provided inhttps://github.com/mkrizmancic/franka_gazebo/robots
by executingBefore the conversion, the original
panda_arm_hand.urdf.xacro
file was modified as follows:panda_arm.xacro
andhand.xacro
files included in the file were adjusted as neededgazebo
parameter was set tofalse
in order to avoid unsupported features in the finalPanda.urdf
fileThe included files (
panda_arm.xacro
andhand.xacro
) were in turn modified as follows:package://
was replaced byfile://
in the paths to the collision and visual meshes in order to be consistent with the format required in this folderThe mesh files were instead taken from
https://github.com/cpezzato/panda_simulation
because they have the phongambient
parameter set to1 1 1 1
which results in a Panda robot visualized in its original colors. The phongambient
parameter set to0 0 0 1
in the mesh files provided inhttps://github.com/mkrizmancic/franka_gazebo/robots
resulted instead in a Panda robot visualized in dark gray.