No public description

PiperOrigin-RevId: 798355907
Change-Id: I3a225e3200cbc60ccc3d93f21694a606a7ab296a
This commit is contained in:
Google DeepMind
2025-08-22 15:03:57 -07:00
committed by Copybara-Service
parent 93c5665730
commit a64a26c3ae
3 changed files with 0 additions and 9 deletions
-4
View File
@@ -1342,8 +1342,6 @@ Set default options for length range computation.
Set solver parameters to default values.
*Nullable:* ``solref``, ``solimp``
.. _mj_defaultOption:
`mj_defaultOption <#mj_defaultOption>`__
@@ -1371,8 +1369,6 @@ Set visual options to default values.
Copy mjModel, allocate new if dest is NULL.
*Nullable:* ``dest``
.. _mj_saveModel:
`mj_saveModel <#mj_saveModel>`__
-2
View File
@@ -166,7 +166,6 @@ MJAPI void mj_inverseSkip(const mjModel* m, mjData* d, int skipstage, int skipse
MJAPI void mj_defaultLROpt(mjLROpt* opt);
// Set solver parameters to default values.
// Nullable: solref, solimp
MJAPI void mj_defaultSolRefImp(mjtNum* solref, mjtNum* solimp);
// Set physics options to default values.
@@ -176,7 +175,6 @@ MJAPI void mj_defaultOption(mjOption* opt);
MJAPI void mj_defaultVisual(mjVisual* vis);
// Copy mjModel, allocate new if dest is NULL.
// Nullable: dest
MJAPI mjModel* mj_copyModel(mjModel* dest, const mjModel* src);
// Save model to binary MJB file or memory buffer; buffer has precedence when given.
-3
View File
@@ -592,14 +592,12 @@ FUNCTIONS: Mapping[str, FunctionDecl] = dict([
type=PointerType(
inner_type=ValueType(name='mjtNum'),
),
nullable=True,
),
FunctionParameterDecl(
name='solimp',
type=PointerType(
inner_type=ValueType(name='mjtNum'),
),
nullable=True,
),
),
doc='Set solver parameters to default values.',
@@ -644,7 +642,6 @@ FUNCTIONS: Mapping[str, FunctionDecl] = dict([
type=PointerType(
inner_type=ValueType(name='mjModel'),
),
nullable=True,
),
FunctionParameterDecl(
name='src',