Matrix4 import { Matrix4 } from "destack:math"; Four-by-four matrix in row-major field order. export struct Matrix4 { x: Vector4; y: Vector4; z: Vector4; w: Vector4; } language/library/src/math/matrix.ds:35:47 Members x: Vector4 First row. y: Vector4 Second row. z: Vector4 Third row. w: Vector4 Fourth row.