-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Refactors the doc on Schema for Lab 3.0, and adds MuJoCo gravcomp #5276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4c9a192
4e71723
e1144f6
6f2a3d8
8b57185
3265ef0
cc202e8
24ff174
c964992
cb6f29b
c414805
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't that be in a separate PR? |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could be in another PR? |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| isaaclab_newton.sim.schemas | ||
| =========================== | ||
|
|
||
| .. automodule:: isaaclab_newton.sim.schemas | ||
|
|
||
| Newton-targeted schema configuration classes. Each cfg below extends a | ||
| solver-common base in :mod:`isaaclab.sim.schemas` with Newton-namespaced | ||
| attributes (``newton:*``) or solver-specific attributes (``mjc:*`` for | ||
| Newton's MuJoCo solver). MuJoCo cfgs subclass their Newton counterpart | ||
| because MuJoCo is one of Newton's solver options. | ||
|
|
||
| See :doc:`/source/overview/core-concepts/schema_cfgs` for the design and | ||
| when to use each class. | ||
|
|
||
| .. rubric:: Newton-targeted (family roots) | ||
|
|
||
| .. autosummary:: | ||
|
|
||
| NewtonRigidBodyPropertiesCfg | ||
| NewtonJointDrivePropertiesCfg | ||
| NewtonCollisionPropertiesCfg | ||
| NewtonMeshCollisionPropertiesCfg | ||
| NewtonMaterialPropertiesCfg | ||
| NewtonArticulationRootPropertiesCfg | ||
|
|
||
| .. rubric:: MuJoCo-solver-specific | ||
|
|
||
| .. autosummary:: | ||
|
|
||
| MujocoRigidBodyPropertiesCfg | ||
| MujocoJointDrivePropertiesCfg | ||
|
|
||
| .. currentmodule:: isaaclab_newton.sim.schemas | ||
|
|
||
| Rigid Body | ||
| ---------- | ||
|
|
||
| .. autoclass:: NewtonRigidBodyPropertiesCfg | ||
| :members: | ||
| :show-inheritance: | ||
| :exclude-members: __init__ | ||
|
|
||
| .. autoclass:: MujocoRigidBodyPropertiesCfg | ||
| :members: | ||
| :show-inheritance: | ||
| :exclude-members: __init__ | ||
|
|
||
| Joint Drive | ||
| ----------- | ||
|
|
||
| .. autoclass:: NewtonJointDrivePropertiesCfg | ||
| :members: | ||
| :show-inheritance: | ||
| :exclude-members: __init__ | ||
|
|
||
| .. autoclass:: MujocoJointDrivePropertiesCfg | ||
| :members: | ||
| :show-inheritance: | ||
| :exclude-members: __init__ | ||
|
|
||
| Collision | ||
| --------- | ||
|
|
||
| .. autoclass:: NewtonCollisionPropertiesCfg | ||
| :members: | ||
| :show-inheritance: | ||
| :exclude-members: __init__ | ||
|
|
||
| .. autoclass:: NewtonMeshCollisionPropertiesCfg | ||
| :members: | ||
| :show-inheritance: | ||
| :exclude-members: __init__ | ||
|
|
||
| Material | ||
| -------- | ||
|
|
||
| .. autoclass:: NewtonMaterialPropertiesCfg | ||
| :members: | ||
| :show-inheritance: | ||
| :exclude-members: __init__ | ||
|
|
||
| Articulation Root | ||
| ----------------- | ||
|
|
||
| .. autoclass:: NewtonArticulationRootPropertiesCfg | ||
| :members: | ||
| :show-inheritance: | ||
| :exclude-members: __init__ |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could be in another PR? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, could be in another PR?