1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! # kalman_rs
//! 
//! `kalman_rs` is a collection of utilities for using the kalman filter
//! 


mod geometry;
pub use geometry::rectangle::Rectangle;
pub use geometry::trapezoid::Trapezoid;
pub use geometry::traits;