pub type Vec3i = Vec3<i32>;
A 3-dimensional signed integer vector type
pub struct Vec3i { pub x: i32, pub y: i32, pub z: i32, }
x: i32
y: i32
z: i32