Is there a way to ignore specific links for robot-world collisions? #191
-
Hi, I understand there is no existing feature for this so any pointer to where I can implement it will be helpful! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
If the sphere radius is set to a negative value, then collision checking is ignored for that sphere. You can set a negative radius and then add a value to self collision buffer to enable only self collision checking. |
Beta Was this translation helpful? Give feedback.
-
What I ended up doing was adding a list of strings named world_collision_ignore in the robot yml file and added these lines to CudaRobotGenerator:
as well as a corresponding member in the constructor |
Beta Was this translation helpful? Give feedback.
If the sphere radius is set to a negative value, then collision checking is ignored for that sphere.
You can set a negative radius and then add a value to self collision buffer to enable only self collision checking.