Matrix3

Type Alias Matrix3 

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

redefinition, scalar = f64

Aliased Type§

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