Matrix2

Type Alias Matrix2 

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

redefinition, scalar = f64

Aliased Type§

#[repr(C)]
pub struct Matrix2 { pub x: Vector2<f64>, pub y: Vector2<f64>, }

Fields§

§x: Vector2<f64>

The first column of the matrix.

§y: Vector2<f64>

The second column of the matrix.