Returns a copy of this MjData instance with the same parent MjModel.
(self)
| 479 | return self.__class__(copy.deepcopy(self._data)) |
| 480 | |
| 481 | def copy(self): |
| 482 | """Returns a copy of this MjData instance with the same parent MjModel.""" |
| 483 | return self.__copy__() |
| 484 | |
| 485 | def object_velocity(self, object_id, object_type, local_frame=False): |
| 486 | """Returns the 6D velocity (linear, angular) of a MuJoCo object. |
no test coverage detected