I'm working with a robot with an external positioner, where the working frame is not the root link. The KDL parser sets the base link to the root node, which means the following line uses the wrong working frame:
|
if (!tesseract_kinematics::parseSceneGraph(data, *env.getSceneGraph(), jg->getBaseLinkName(), manip_info.tcp_frame)) |
Changing jg->getBaseLinkName() to manip_info.working_frame has worked for me. Is there a reason it's like it is right now?
I'm working with a robot with an external positioner, where the working frame is not the root link. The KDL parser sets the base link to the root node, which means the following line uses the wrong working frame:
tesseract_planning/tesseract_time_parameterization/kdl/src/constant_tcp_speed_parameterization.cpp
Line 174 in 75c32e1
Changing
jg->getBaseLinkName()tomanip_info.working_framehas worked for me. Is there a reason it's like it is right now?