Skip to content

Commit bba8b20

Browse files
committed
small fix
1 parent 850b02e commit bba8b20

File tree

5 files changed

+1394
-17
lines changed

5 files changed

+1394
-17
lines changed

en/jointCallbackFunctions.htm

+4-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ <h1>Joint callback functions</h1>
4141
# inData['highLimit'] : the higher limit of the joint (if the joint is not cyclic)
4242
# inData['dt'] : the step size used for the calculations
4343
# inData['pos'] : the current position
44-
# inData['vel'] : the current velocity
44+
# inData['vel'] : the current velocity (only with Mujoco)
45+
# inData['accel'] : the current acceleration (only with Mujoco)
4546
# inData['targetPos'] : the desired position (if joint is dynamic, or when sim.setJointTargetPosition was called)
4647
# inData['targetVel'] : the desired velocity (if joint is dynamic, or when sim.setJointTargetVelocity was called)
4748
# inData['initVel'] : the desired initial velocity (if joint is kinematic and when sim.setJointTargetVelocity
@@ -92,7 +93,8 @@ <h1>Joint callback functions</h1>
9293
-- inData.highLimit : the higher limit of the joint (if the joint is not cyclic)
9394
-- inData.dt : the step size used for the calculations
9495
-- inData.pos : the current position
95-
-- inData.vel : the current velocity
96+
-- inData.vel : the current velocity (only with Mujoco)
97+
-- inData.accel : the current acceleration (only with Mujoco)
9698
-- inData.targetPos : the desired position (if joint is dynamic, or when sim.setJointTargetPosition was called)
9799
-- inData.targetVel : the desired velocity (if joint is dynamic, or when sim.setJointTargetVelocity was called)
98100
-- inData.initVel : the desired initial velocity (if joint is kinematic and when sim.setJointTargetVelocity

0 commit comments

Comments
 (0)