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.

7 lines (6 loc) 183 B
import type { ArrayVector3D } from "./types.js"; /** * Creates a zero 3D vector. * @returns {ArrayVector3D} Vector `[0, 0, 0]` */ export declare const zero3D: () => ArrayVector3D;