2 lines
101 B
TypeScript
2 lines
101 B
TypeScript
/** @internal */
|
|
export const mix = (from: number, to: number, q: number) => from + (to - from) * q;
|