1 2 3 4 5 6 7 8 9
// Vectors
pub type Vector3i = cgmath::Vector3<i32>;
pub type Vector2i = cgmath::Vector2<i32>;
pub type Vector3f = cgmath::Vector3<f32>;
pub type Vector2f = cgmath::Vector2<f32>;
pub type Color = cgmath::Vector3<f32>;
pub type Matrix3f = cgmath::Matrix3<f32>;