UNPKG

@thi.ng/vectors

Version:

Optimized 2d/3d/4d and arbitrary length vector operations, support for memory mapping/layouts

11 lines 455 B
import type { ReadonlyVec, Vec } from "./api.js"; /** * Takes an array of vectors and computes componentwise minimum. 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 minBounds: (out: Vec | null, src: ReadonlyVec[]) => Vec<number>; //# sourceMappingURL=min-bounds.d.ts.map