Type Alias Matrix

Source
pub type Matrix = ColumnMatrix4<f32>;
Expand description

Matrix, 4x4 f32 components, column major

Aliased Type§

struct Matrix {
    pub x: Vector4<f32>,
    pub y: Vector4<f32>,
    pub z: Vector4<f32>,
    pub w: Vector4<f32>,
}

Fields§

§x: Vector4<f32>§y: Vector4<f32>§z: Vector4<f32>§w: Vector4<f32>

Trait Implementations§

Source§

impl From<Matrix> for Matrix

Source§

fn from(value: Matrix) -> Self

Converts to this type from the input type.