menuLanguageSetupTypeScriptTypeScript++RuntimeStandard LibraryWebNodeSystemsModulesdestack:mathMatrix4MembersConfigurationStatic AnalysisDynamic AnalysisDeploymentDocs/Language/Standard Library/Modules/destack:mathmdtxtMatrix4import { Matrix4 } from "destack:math";Four-by-four matrix in row-major field order. language/library/src/math/matrix.ds:35:471export struct Matrix4<T: Numeric> {2 x: Vector4<T>;3 y: Vector4<T>;4 z: Vector4<T>;5 w: Vector4<T>;6}Membersx: Vector4<T>First row. y: Vector4<T>Second row. z: Vector4<T>Third row. w: Vector4<T>Fourth row.