mjlab/typings/mujoco/_callbacks.pyi
Upstream Snapshot 32a241c28f
Some checks failed
nightly / Test against latest dependencies (py3.10) (push) Has been cancelled
nightly / Test against latest dependencies (py3.13) (push) Has been cancelled
tests / tests (3.13, locked) (push) Has been cancelled
tests / tests (3.13, unlocked) (push) Has been cancelled
tests / pyright (3.10) (push) Has been cancelled
tests / lint-format (push) Has been cancelled
tests / tests (3.10, locked) (push) Has been cancelled
tests / tests (3.11, locked) (push) Has been cancelled
tests / tests (3.12, locked) (push) Has been cancelled
tests / pyright (3.11) (push) Has been cancelled
tests / pyright (3.12) (push) Has been cancelled
tests / pyright (3.13) (push) Has been cancelled
tests / ty-check (3.10) (push) Has been cancelled
tests / ty-check (3.11) (push) Has been cancelled
tests / ty-check (3.12) (push) Has been cancelled
tests / ty-check (3.13) (push) Has been cancelled
tests / stubs (push) Has been cancelled
tests / smoke-test (push) Has been cancelled
Docker / check_paths (push) Has been cancelled
docs / build (push) Has been cancelled
Docker / build (push) Has been cancelled
Import upstream snapshot c19f713c415a699a79d71cd96aa13c3104a05047
Upstream: https://github.com/michaelgillett/mjlab
Upstream-Commit: c19f713c415a699a79d71cd96aa13c3104a05047
Upstream-Branch: main
2026-08-28 15:42:17 +08:00

48 lines
1.6 KiB
Python

from __future__ import annotations
import typing
__all__: list[str] = ['get_mjcb_act_bias', 'get_mjcb_act_dyn', 'get_mjcb_act_gain', 'get_mjcb_contactfilter', 'get_mjcb_control', 'get_mjcb_passive', 'get_mjcb_sensor', 'get_mjcb_time', 'get_mju_user_free', 'get_mju_user_malloc', 'get_mju_user_warning', 'set_mjcb_act_bias', 'set_mjcb_act_dyn', 'set_mjcb_act_gain', 'set_mjcb_contactfilter', 'set_mjcb_control', 'set_mjcb_passive', 'set_mjcb_sensor', 'set_mjcb_time', 'set_mju_user_free', 'set_mju_user_malloc', 'set_mju_user_warning']
def get_mjcb_act_bias() -> typing.Any:
...
def get_mjcb_act_dyn() -> typing.Any:
...
def get_mjcb_act_gain() -> typing.Any:
...
def get_mjcb_contactfilter() -> typing.Any:
...
def get_mjcb_control() -> typing.Any:
...
def get_mjcb_passive() -> typing.Any:
...
def get_mjcb_sensor() -> typing.Any:
...
def get_mjcb_time() -> typing.Any:
...
def get_mju_user_free() -> typing.Any:
...
def get_mju_user_malloc() -> typing.Any:
...
def get_mju_user_warning() -> typing.Any:
...
def set_mjcb_act_bias(arg0: typing.Any) -> None:
...
def set_mjcb_act_dyn(arg0: typing.Any) -> None:
...
def set_mjcb_act_gain(arg0: typing.Any) -> None:
...
def set_mjcb_contactfilter(arg0: typing.Any) -> None:
...
def set_mjcb_control(arg0: typing.Any) -> None:
...
def set_mjcb_passive(arg0: typing.Any) -> None:
...
def set_mjcb_sensor(arg0: typing.Any) -> None:
...
def set_mjcb_time(arg0: typing.Any) -> None:
...
def set_mju_user_free(arg0: typing.Any) -> None:
...
def set_mju_user_malloc(arg0: typing.Any) -> None:
...
def set_mju_user_warning(arg0: typing.Any) -> None:
...