@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) • 316 B
TypeScript
import type { ArrayVector4D } from "./types.js";
/**
* Checks if a 4D vector has infinite components.
* @param {ArrayVector4D} xyzw - Vector as `[x, y, z, w]`
* @returns {boolean} `true` if vector has infinite components, `false` otherwise
*/
export declare const isInfinite4D: (xyzw: ArrayVector4D) => boolean;