Open
Description
The idea came up in #207 that it would be nice to have mix*()
helper functions as shortcuts to linear, bilinear, and trilinear interpolation of colors in a particular color space:
mix([colorA, colorB])(t)
is equivalent tointerpolate([colorA, colorB])
mix2d(colors)(tx, ty)
for bilinear interpolationmix3d(colors)(tx, ty, tz)
for trilinear interpolation