UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines (7 loc) 165 B
import { lerp } from "./lerp.js"; /** * * Produces a proportional mix of 2 values, a*(1-portion) + b*portion * Same as lerp */ export const mix = lerp;