dmat3x2

Type Alias dmat3x2 

Source
pub type dmat3x2 = Array<dvec2, [Element<dvec2>; 3]>;
Expand description

Matrix of 3 x 2 double-precision floating-point values.

Aliased Type§

#[repr(C, align(16))]
pub struct dmat3x2(pub [Element<dvec2>; 3], pub PhantomData<fn(dvec2)>);

Tuple Fields§

§0: [Element<dvec2>; 3]§1: PhantomData<fn(dvec2)>