You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The retimer can leave the robot in a different configuration than it started because the robot state saver is missing the LinkTransformation flag. E.g.
with robot.CreateRobotStateSaver(Robot.SaveParameters.ActiveDOF | Robot.SaveParameters.LinkTransformation), \
This can cause very weird errors when subsequent planning operations occur, as the initial pose of the robot is modified.
The text was updated successfully, but these errors were encountered:
This is a quick one. In
prpy/src/prpy/planning/retimer.py:95
:https://github.com/personalrobotics/prpy/blob/master/src/prpy/planning/retimer.py#L95
The retimer can leave the robot in a different configuration than it started because the robot state saver is missing the
LinkTransformation
flag. E.g.with robot.CreateRobotStateSaver(Robot.SaveParameters.ActiveDOF | Robot.SaveParameters.LinkTransformation), \
This can cause very weird errors when subsequent planning operations occur, as the initial pose of the robot is modified.
The text was updated successfully, but these errors were encountered: