pub type Vec3i = Vector3<i32>;
3D integer vector.
#[repr(C)]pub struct Vec3i { pub x: i32, pub y: i32, pub z: i32, }
x: i32
y: i32
z: i32