Module vek::mat::repr_c::row_major

source ·
Expand description

Matrices stored in row-major layout.

Unlike the column-major layout, row-major matrices are good at being the right-hand-side of a product with one or more row vectors.

Also, their natural indexing order matches the existing mathematical conventions.

Re-exports

pub use self::mat4::Mat4;
pub use self::mat3::Mat3;
pub use self::mat2::Mat2;

Modules

2x2 matrix.
3x3 matrix.
4x4 matrix.