brahe 1.4.0

Brahe is a modern satellite dynamics library for research and engineering applications designed to be easy-to-learn, high-performance, and quick-to-deploy. The north-star of the development is enabling users to solve meaningful problems and answer questions quickly, easily, and correctly.
Documentation
/*!
The `attitude` module provides types and traits for representing and converting between different attitude representations.
*/

#![allow(unused_imports)]

pub mod attitude_types;
pub mod euler_angle;
pub mod euler_axis;
pub mod quaternion;
pub mod rotation_matrix;
pub mod traits;

pub use attitude_types::*;
pub use euler_angle::*;
pub use euler_axis::*;
pub use quaternion::*;
pub use rotation_matrix::*;
pub use traits::*;