pub type Matrix3<F> = [[F; 3]; 3];Expand description
Matrix3
Trait Implementations§
Source§impl<F: Float + Debug + Sum> TMatrix<F> for Matrix3<F>
TMatrix for Matrix3
impl<F: Float + Debug + Sum> TMatrix<F> for Matrix3<F>
TMatrix for Matrix3
Source§fn colmajor3(m: Vec<Vector3<F>>) -> Selfwhere
Self: Sized,
fn colmajor3(m: Vec<Vector3<F>>) -> Selfwhere
Self: Sized,
constructor col major from v3 (move)
Source§fn rowmajor3(m: Vec<Vector3<F>>) -> Selfwhere
Self: Sized,
fn rowmajor3(m: Vec<Vector3<F>>) -> Selfwhere
Self: Sized,
constructor row major from v3 (move)
Source§fn colmajor4(_m: Vec<Vector4<F>>) -> Selfwhere
Self: Sized,
fn colmajor4(_m: Vec<Vector4<F>>) -> Selfwhere
Self: Sized,
constructor col major from v4 (move)