UNPKG

@thi.ng/vectors

Version:

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

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