pub type Vector3i = Vector3<i32>;
Expand description
export Vector3
Aliased Type§
struct Vector3i {
pub x: i32,
pub y: i32,
pub z: i32,
}
Fields§
§x: i32
X coordinate of the vector.
y: i32
Y coordinate of the vector.
z: i32
Z coordinate of the vector.