urdfpy
urdfpy copied to clipboard
Remove float conversion urdf.Joint.get_child_pose
To support passing in sympy symbols from cfg.
Thus, the following code will work.
robot = URDF.load(...)
a = sympy.symbols('a')
fk = robot.link_fk(cfg={'joint' : a})
I hope it is helpful.