Skip to main content

Vec3U

Type Alias Vec3U 

Source
pub type Vec3U<T> = Vector<3, T, Unaligned>;
Expand description

A 3-dimensional vector.

To initialize this type use the vec3 macro.

§No SIMD Alignment

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

Aliased Type§

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