We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8da483 commit 5313100Copy full SHA for 5313100
src/prpy/planning/vectorfield.py
@@ -78,6 +78,9 @@ def vf_geodesic():
78
goal_pose)
79
dqout, tout = prpy.util.ComputeJointVelocityFromTwist(
80
robot, twist)
81
+ # Go as fast as possible
82
+ dqout = min(abs(robot.GetDOFVelocityLimits()/dqout))*dqout
83
+
84
return dqout
85
86
def CloseEnough():
@@ -138,6 +141,9 @@ def vf_straightline():
138
141
twist[0:3] = direction
139
142
140
143
144
145
146
147
148
149
def TerminateMove():
0 commit comments