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.

8 lines (7 loc) 312 B
import type { ArrayVector3D } from "./types.js"; /** * Checks if a vector has infinite components. * @param {ArrayVector3D} xyz - Vector as `[x, y, z]` * @returns {boolean} `true` if the vector has infinite components, `false` otherwise */ export declare const isInfinite3D: (xyz: ArrayVector3D) => boolean;