UNPKG

@fimbul-works/vec

Version:

A comprehensive TypeScript vector math library providing 2D, 3D, and 4D vector operations with a focus on performance and type safety.

8 lines (7 loc) 253 B
import type { ArrayVector4D } from "./types.js"; /** * Clone a 4D vector. * @param {ArrayVector4D} xyzw - Vector as `[x, y, z, w]` * @returns {ArrayVector4D} The cloned vector */ export declare const clone4D: (xyzw: ArrayVector4D) => ArrayVector4D;