I am trying to load model from urdf file.
I can achieve this via RigidBodyTree
class:
rbtree = RigidBodyTree(file_name, floating_base_type)
Unfortunately, as it said at pydrake.attic reference page, it will be deprecated soon.
I tried to add model using pydrake.multibody.parsing.Parser
and pydrake.multibody.plant
, but it seems that model is attached only with floating quaternion joint.
Is there a legal way of setting floating base type not with attic
API?