mat2x4

Type Alias mat2x4 

Source
pub type mat2x4 = Array<vec4, [Element<vec4>; 2]>;
Expand description

Matrix of 2 x 4 floating-point values.

Aliased Type§

#[repr(C, align(16))]
pub struct mat2x4(pub [Element<vec4>; 2], pub PhantomData<fn(vec4)>);

Tuple Fields§

§0: [Element<vec4>; 2]§1: PhantomData<fn(vec4)>