@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.
9 lines (8 loc) • 354 B
TypeScript
import type { ArrayVector3D } from "./types.js";
/**
* Normalize a 3D vector.
* @param {ArrayVector3D} xyz - Vector as `[x, y, z]`
* @param {number} [m] - Optional current magnitude (default: `magnitude3D(xyz)`)
* @returns {ArrayVector3D} The normalized vector
*/
export declare const normalize3D: (xyz: ArrayVector3D, m?: number) => ArrayVector3D;