Skip to main content

Matrix

Type Alias Matrix 

Source
pub type Matrix = Mat2;
Expand description

The matrix type.

Aliased Type§

pub struct Matrix(/* private fields */);

Trait Implementations§

Source§

impl MatrixColumn for Matrix

Source§

type Column = Vec2

The column type returned by column().
Source§

fn column(&self, i: usize) -> Self::Column

Returns the i-th column of this matrix.