-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.pyi
More file actions
43 lines (32 loc) · 1.36 KB
/
Copy path__init__.pyi
File metadata and controls
43 lines (32 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from mujoco.pybindings._structs import *
from mujoco.pybindings._enums import *
def mj_name2id(m, type, name): # real signature unknown; restored from __doc__
"""
mj_name2id(m: mujoco._structs.MjModel, type: int, name: str) -> int
Get id of object with specified name, return -1 if not found; type is mjtObj.
"""
pass
def mj_step(m, d, nstep=1): # real signature unknown; restored from __doc__
"""
mj_step(m: mujoco._structs.MjModel, d: mujoco._structs.MjData, nstep: int = 1) -> None
Advance simulation, use control callback to obtain external force and control. Optionally, repeat nstep times.
"""
pass
def mj_step1(m, d): # real signature unknown; restored from __doc__
"""
mj_step1(m: mujoco._structs.MjModel, d: mujoco._structs.MjData) -> None
Advance simulation in two steps: before external force and control is set by user.
"""
pass
def mj_step2(m, d): # real signature unknown; restored from __doc__
"""
mj_step2(m: mujoco._structs.MjModel, d: mujoco._structs.MjData) -> None
Advance simulation in two steps: after external force and control is set by user.
"""
pass
def mj_resetData(m, d): # real signature unknown; restored from __doc__
"""
mj_resetData(m: mujoco._structs.MjModel, d: mujoco._structs.MjData) -> None
Reset data to defaults.
"""
pass