pub type Mat3d = Matrix3<f64>;
3x3 double-precision matrix.
#[repr(C)]pub struct Mat3d { pub col: [Vector3<f64>; 3], }
col: [Vector3<f64>; 3]
Column vectors of the matrix