pub trait AHRS {
    fn angle_rates(&mut self) -> Vector3<f32>;
    fn attitude(&mut self) -> Vector3<f32>;
    fn local_position(&mut self) -> Vector3<f32>;
    fn local_velocity(&mut self) -> Vector3<f32>;
}

Required Methods

Implementors