You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 to interpolate([colorA, colorB])
mix2d(colors)(tx, ty) for bilinear interpolation
mix3d(colors)(tx, ty, tz) for trilinear interpolation
The text was updated successfully, but these errors were encountered:
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 interpolationThe text was updated successfully, but these errors were encountered: