Skip to main content

Vec4U

Type Alias Vec4U 

Source
pub type Vec4U<T> = Vector<4, T, Unaligned>;
Expand description

A 4-dimensional vector.

To initialize this type use the vec4 macro.

§No SIMD Alignment

This type is not SIMD-aligned and has the memory layout of [T; 4].

Aliased Type§

pub struct Vec4U<T>(/* private fields */);