Matrix3 import { Matrix3 } from "destack:math"; Three-by-three matrix in row-major field order. export struct Matrix3 { x: Vector3; y: Vector3; z: Vector3; } language/library/src/math/matrix.ds:23:32 Members x: Vector3 First row. y: Vector3 Second row. z: Vector3 Third row.