Skip to content
Snippets Groups Projects
Commit bdd7dcec authored by Florent Lamiraux's avatar Florent Lamiraux
Browse files

Add a parameter in Robot python class to avoid reloading the urdf file.

parent a8e23d17
No related branches found
No related tags found
No related merge requests found
...@@ -39,6 +39,6 @@ class Robot (Parent): ...@@ -39,6 +39,6 @@ class Robot (Parent):
urdfSuffix = "" urdfSuffix = ""
srdfSuffix = "" srdfSuffix = ""
def __init__ (self, robotName): def __init__ (self, robotName, load = True):
Parent.__init__ (self, robotName, "planar") Parent.__init__ (self, robotName, "planar", load)
self.tf_root = "base_footprint" self.tf_root = "base_footprint"
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