Skip to main content

Vec2U

Type Alias Vec2U 

Source
pub type Vec2U<T> = Vector<2, T, Unaligned>;
Expand description

A 2-dimensional vector.

To initialize this type use the vec2 macro.

§No SIMD Alignment

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

Aliased Type§

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