Skip to main content

Module matrix

Module matrix 

Source
Expand description

Small dense matrices: the linear part of a transform.

Fixed 3×3 and 2×2, row-major, stored inline. Deliberately not general: these sit on the hot path of every transform application in the kernel, and the sizes are known. General linear algebra lives in crate::solve.

Structs§

Matrix2
A 2×2 matrix, row-major.
Matrix3
A 3×3 matrix, row-major.