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.

14 lines (13 loc) 634 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.limitMax3D = void 0; const magnitude_3d_js_1 = require("./magnitude-3d.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 */ const limitMax3D = (xyz, max, m = (0, magnitude_3d_js_1.magnitude3D)(xyz)) => m > max ? [(xyz[0] / m) * max, (xyz[1] / m) * max, (xyz[2] / m) * max] : xyz; exports.limitMax3D = limitMax3D;