Type Alias Mat4

Source
pub type Mat4 = Matrix4<f64>;
Expand description

4x4 matrix.

Aliased Type§

#[repr(C)]
pub struct Mat4 { pub x: Vector4<f64>, pub y: Vector4<f64>, pub z: Vector4<f64>, pub w: Vector4<f64>, }

Fields§

§x: Vector4<f64>

The first column of the matrix.

§y: Vector4<f64>

The second column of the matrix.

§z: Vector4<f64>

The third column of the matrix.

§w: Vector4<f64>

The fourth column of the matrix.