pub type Vec3U<T> = Vector<3, T, Unaligned>;
A 3-dimensional vector.
This type is not SIMD-aligned and has the memory layout of [T; 3].
[T; 3]
pub struct Vec3U<T>(/* private fields */);