1 2 3 4 5 6 7 8
//! Mathematical primitives and operations. use nalgebra::{Matrix4, Vector2, Vector3, Vector4}; pub type Mat4 = Matrix4<f32>; pub type Vec2 = Vector2<f32>; pub type Vec3 = Vector3<f32>; pub type Vec4 = Vector4<f32>;