(&self)
| 230 | #[inline(always)] |
| 231 | pub fn set_accel(&mut self, x: f32, y: f32, z: f32) { |
| 232 | self.accel = perro_structs::Vector3::new(x, y, z); |
| 233 | } |
| 234 | |
| 235 | #[inline(always)] |
| 236 | pub fn stick_x(&self) -> f32 { |
| 237 | self.stick.x.to_f32() |
no test coverage detected