nalgebra/nalgebra-glm/src/lib.rs

40 lines
604 B
Rust
Raw Normal View History

#![allow(dead_code)]
extern crate num_traits as num;
#[macro_use]
extern crate approx;
extern crate alga;
extern crate nalgebra as na;
pub use aliases::*;
pub use constructors::*;
pub use common::*;
pub use geometric::*;
pub use matrix::*;
pub use traits::*;
pub use trigonometric::*;
pub use vector_relational::*;
pub use exponential::*;
pub use gtx::*;
pub use gtc::*;
pub use ext::*;
2018-09-21 01:54:12 +08:00
mod aliases;
mod constructors;
mod common;
mod matrix;
mod geometric;
mod traits;
mod trigonometric;
mod vector_relational;
mod exponential;
//mod integer;
//mod packing;
2018-09-21 01:54:12 +08:00
pub mod ext;
pub mod gtc;
pub mod gtx;