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