Vector4 import { Vector4 } from "destack:math"; Four-dimensional vector. export struct Vector4 { x: T; y: T; z: T; w: T; } language/library/src/math/linear.ds:28:40 Members x: T The x component. y: T The y component. z: T The z component. w: T The w component.