1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! A collection of AHRS algorithms ported to Rust.

#![crate_name = "ahrs"]

extern crate nalgebra as na;
extern crate alga;

pub use ahrs::{
    Ahrs
};
pub use madgwick::{
    Madgwick
};
pub use mahony::{
    Mahony
};

mod ahrs;
mod madgwick;
mod mahony;