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