pub type Mat3 = Matrix3<f64>;Expand description
3x3 matrix.
Aliased Type§
#[repr(C)]pub struct Mat3 {
pub x: Vector3<f64>,
pub y: Vector3<f64>,
pub z: Vector3<f64>,
}Fields§
§x: Vector3<f64>The first column of the matrix.
y: Vector3<f64>The second column of the matrix.
z: Vector3<f64>The third column of the matrix.