Type Alias Vector3u

Source
pub type Vector3u = Vector3<u32>;
Expand description

export Vector3 as Vector3u

Aliased Type§

#[repr(C)]
pub struct Vector3u { pub x: u32, pub y: u32, pub z: u32, }

Fields§

§x: u32

X coordinate of the vector.

§y: u32

Y coordinate of the vector.

§z: u32

Z coordinate of the vector.