UNPKG

@thi.ng/vectors

Version:

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

13 lines 444 B
import type { ReadonlyVec, Vec } from "./api.js"; /** * Vector version of * [`mixQuadratic`](https://docs.thi.ng/umbrella/math/functions/mixQuadratic.html). * * @param out - result * @param a - * @param b - * @param c - * @param t - interpolation coeff `[0,1]` */ export declare const mixQuadratic: (out: Vec | null, a: ReadonlyVec, b: ReadonlyVec, c: ReadonlyVec, t: number) => Vec<number>; //# sourceMappingURL=mix-quadratic.d.ts.map