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.

7 lines (6 loc) 245 B
/** * Checks if a 3D vector is zero. * @param {ArrayVector3D} xyz - Vector as `[x, y, z]` * @returns {boolean} `true` if the vector is zero, `false` otherwise */ export const isZero3D = (xyz) => xyz[0] === 0 && xyz[1] === 0 && xyz[2] === 0;