@thi.ng/vectors
Version:
Optimized 2d/3d/4d and arbitrary length vector operations, support for memory mapping/layouts
11 lines • 455 B
TypeScript
import type { ReadonlyVec, Vec } from "./api.js";
/**
* Takes an array of vectors and computes componentwise maximum. Writes result
* to `out` (or a new vector). If `out` is given is MUST have at least the size
* of given input vectors (otherwise some components will have NaN results).
*
* @param out -
* @param src -
*/
export declare const maxBounds: (out: Vec | null, src: ReadonlyVec[]) => Vec<number>;
//# sourceMappingURL=max-bounds.d.ts.map