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