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.limitMin3D = void 0; const magnitude_3d_js_1 = require("./magnitude-3d.js"); /** * Limits the minimum magnitude of a 3D vector. * @param {ArrayVector3D} xyz - Vector as `[x, y, z]` * @param {number} min - Minimum magnitude * @param {number} [m] - Optional current magnitude (default: `magnitude3D(xyz)`) * @returns {ArrayVector3D} The adjusted vector */ const limitMin3D = (xyz, min, m = (0, magnitude_3d_js_1.magnitude3D)(xyz)) => m < min ? [(xyz[0] / m) * min, (xyz[1] / m) * min, (xyz[2] / m) * min] : xyz; exports.limitMin3D = limitMin3D;