| 1 | #![allow(non_snake_case, clippy::all)] |
|---|---|
| 2 | #![doc= include_str!( "../readme.md")] |
| 3 | #![allow(missing_docs)] |
| 4 | #![cfg_attr(all(not(feature = "std")), no_std)] |
| 5 | |
| 6 | mod bindings; |
| 7 | pub use bindings::*; |
| 8 | |
| 9 | mod matrix3x2; |
| 10 | mod matrix4x4; |
| 11 | mod vector2; |
| 12 | mod vector3; |
| 13 | mod vector4; |
| 14 |
