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

Update to modification in hpp-corbaserver idl interface

  - loadRobotModel now takes package name as input.
parent 5d1d2f4f
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@
from hpp.corbaserver.robot import Robot as Parent
class Robot (Parent):
packageName = "hrp2_14_description"
urdfName = "hrp2_14"
urdfSuffix = ""
srdfSuffix = ""
......@@ -70,8 +71,8 @@ class Robot (Parent):
}
def __init__ (self):
Parent.__init__ (self, "freeflyer", self.urdfName, self.urdfSuffix,
self.srdfSuffix)
Parent.__init__ (self, "freeflyer", self.packageName, self.urdfName,
self.urdfSuffix, self.srdfSuffix)
def getInitialConfig (self):
q = []
......
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