lyra-engine/src/math/mod.rs

8 lines
122 B
Rust
Raw Normal View History

2023-05-15 03:18:41 +00:00
/// Re-export of glam library
pub use glam::*;
pub mod angle;
2023-05-15 03:21:47 +00:00
pub use angle::*;
pub mod transform;
pub use transform::*;