pub type Vector3i = Vector3<i32>;Expand description
export Vector3
Aliased Type§
#[repr(C)]pub struct Vector3i {
pub x: i32,
pub y: i32,
pub z: i32,
}Fields§
§x: i32X coordinate of the vector.
y: i32Y coordinate of the vector.
z: i32Z coordinate of the vector.