Matrix4

Type Alias Matrix4 

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

redefinition, scalar = f64

Aliased Type§

#[repr(C)]
pub struct Matrix4 { 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.