pub type Mat2d = Matrix2<f64>;
2x2 double-precision matrix.
#[repr(C)]pub struct Mat2d { pub col: [Vector2<f64>; 2], }
col: [Vector2<f64>; 2]
Column vectors of the matrix