Skip to content
Snippets Groups Projects
Commit 1bbad047 authored by Rohan Budhiraja's avatar Rohan Budhiraja
Browse files

[python] DynamicPinocchio is the new module name

parent 854af2e9
No related branches found
No related tags found
No related merge requests found
from dynamic_graph.sot.dynamics import Dynamic from dynamic_graph.sot.dynamics_pinocchio import DynamicPinocchio
from ros_publish import RosPublish from ros_publish import RosPublish
from ros_subscribe import RosSubscribe from ros_subscribe import RosSubscribe
from ros_joint_state import RosJointState from ros_joint_state import RosJointState
...@@ -10,9 +10,9 @@ from ros import RosPublish as RosImport ...@@ -10,9 +10,9 @@ from ros import RosPublish as RosImport
from ros import RosSubscribe as RosExport from ros import RosSubscribe as RosExport
class RosRobotModel(Dynamic): class RosRobotModel(DynamicPinocchio):
def __init__(self, name): def __init__(self, name):
Dynamic.__init__(self, name) DynamicPinocchio.__init__(self, name)
self.namespace = "sot_controller" self.namespace = "sot_controller"
self.jointsParameterName_ = "jrl_map" self.jointsParameterName_ = "jrl_map"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment