Vec3

Type Alias Vec3 

Source
pub type Vec3<T> = Vector<3, T, Simd>;
Expand description

A 3D vector of T elements.

This is a type alias for Vector<3, T, Simd>. For appropriate Ts, this type is SIMD-aligned and uses performant SIMD instructions.

Aliased Typeยง

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