Matrix2 import { Matrix2 } from "destack:math"; Two-by-two matrix in row-major field order. export struct Matrix2 { m00: T; m01: T; m10: T; m11: T; } language/library/src/math/matrix.ds:8:20 Members m00: T First row, first column. m01: T First row, second column. m10: T Second row, first column. m11: T Second row, second column.