Recomputes the forward dynamics without advancing the simulation.
(self)
| 508 | self._dirty = True |
| 509 | |
| 510 | def forward(self): |
| 511 | """Recomputes the forward dynamics without advancing the simulation.""" |
| 512 | super().forward() |
| 513 | self._dirty = False |
| 514 | |
| 515 | def bind(self, mjcf_elements) -> Binding: |
| 516 | """Creates a binding between this `Physics` instance and `mjcf.Element`s. |
no outgoing calls