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? 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
If the URDF file contains a loop, printTree
urdfdom/urdf_parser/src/check_urdf.cpp
Line 100 in 99c6f58
Example:
<robot name="loopy"> <link name="world" /> <link name="gripper_frame" /> <joint name="world_to_gripper" type="fixed"> <parent link="world"/> <child link="gripper_frame"/> <origin xyz="0.0 0.1 0.17" rpy="0 0 0"/> </joint> <link name="calibration_plate" /> <joint name="gripper_to_calibration_plate" type="fixed"> <parent link="gripper_frame"/> <child link="calibration_plate"/> <origin xyz="0.0 0.1 0.17" rpy="0 0 0"/> </joint> <joint name="gripper_to_calibration_plate2" type="fixed"> <parent link="gripper_frame"/> <child link="gripper_frame"/> <origin xyz="0.0 0.1 0.17" rpy="0 0 0"/> </joint> </robot>
Are there consumers of URDF that accept loops (then this could be handled with a warning), otherwise it should give an error
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If the URDF file contains a loop, printTree
urdfdom/urdf_parser/src/check_urdf.cpp
Line 100 in 99c6f58
Example:
Are there consumers of URDF that accept loops (then this could be handled with a warning), otherwise it should give an error
The text was updated successfully, but these errors were encountered: