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.

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