Returns scaled force/torque sensor readings at the toes.
(self)
| 189 | return torso_to_toe.dot(torso_frame) |
| 190 | |
| 191 | def force_torque(self): |
| 192 | """Returns scaled force/torque sensor readings at the toes.""" |
| 193 | force_torque_sensors = self._get_sensor_names(enums.mjtSensor.mjSENS_FORCE, |
| 194 | enums.mjtSensor.mjSENS_TORQUE) |
| 195 | return np.arcsinh(self.named.data.sensordata[force_torque_sensors]) |
| 196 | |
| 197 | def imu(self): |
| 198 | """Returns IMU-like sensor readings.""" |
no test coverage detected