@thi.ng/vectors
Version:
Optimized 2d/3d/4d and arbitrary length vector operations, support for memory mapping/layouts
10 lines • 321 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).
*
* @param out -
* @param src -
*/
export declare const maxBounds: (out: Vec | null, src: ReadonlyVec[]) => Vec;
//# sourceMappingURL=max-bounds.d.ts.map