@@ -41,7 +41,8 @@ <h1>Joint callback functions</h1>
41
41
# inData['highLimit'] : the higher limit of the joint (if the joint is not cyclic)
42
42
# inData['dt'] : the step size used for the calculations
43
43
# 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)
45
46
# inData['targetPos'] : the desired position (if joint is dynamic, or when sim.setJointTargetPosition was called)
46
47
# inData['targetVel'] : the desired velocity (if joint is dynamic, or when sim.setJointTargetVelocity was called)
47
48
# inData['initVel'] : the desired initial velocity (if joint is kinematic and when sim.setJointTargetVelocity
@@ -92,7 +93,8 @@ <h1>Joint callback functions</h1>
92
93
-- inData.highLimit : the higher limit of the joint (if the joint is not cyclic)
93
94
-- inData.dt : the step size used for the calculations
94
95
-- 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)
96
98
-- inData.targetPos : the desired position (if joint is dynamic, or when sim.setJointTargetPosition was called)
97
99
-- inData.targetVel : the desired velocity (if joint is dynamic, or when sim.setJointTargetVelocity was called)
98
100
-- inData.initVel : the desired initial velocity (if joint is kinematic and when sim.setJointTargetVelocity
0 commit comments