pub type Vec3u = Vec3<u32>;
A 3-dimensional unsigned integer vector type
pub struct Vec3u { pub x: u32, pub y: u32, pub z: u32, }
x: u32
y: u32
z: u32