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

Reintroduce RobotSimu.

parent db6d2296
No related branches found
No related tags found
1 merge request!1[major][cpp] starting point to integrate pinocchio
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
from dynamic_graph.sot import SE3, R3, SO3 from dynamic_graph.sot import SE3, R3, SO3
from dynamic_graph.sot.core.feature_position import FeaturePosition from dynamic_graph.sot.core.feature_position import FeaturePosition
from dynamic_graph.sot.core import Device, FeaturePoint6dRelative, \ from dynamic_graph.sot.core import RobotSimu, FeaturePoint6dRelative, \
FeatureGeneric, FeatureJointLimits, Task, Constraint, GainAdaptive, SOT FeatureGeneric, FeatureJointLimits, Task, Constraint, GainAdaptive, SOT
from dynamic_graph.sot.dynamics.parser import Parser from dynamic_graph.sot.dynamics.parser import Parser
...@@ -158,7 +158,7 @@ class AbstractHumanoidRobot (object): ...@@ -158,7 +158,7 @@ class AbstractHumanoidRobot (object):
raise RunTimeError("robots models have to be initialized first") raise RunTimeError("robots models have to be initialized first")
if not self.device: if not self.device:
self.device = Device(self.name + '.device') self.device = RobotSimu(self.name + '.device')
# Freeflyer reference frame should be the same as global # Freeflyer reference frame should be the same as global
# frame so that operational point positions correspond to # frame so that operational point positions correspond to
......
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