import Color from './color'; import {number} from './lerp'; export {number}; export function color(from: Color, to: Color, t: number): Color { return new Color( number(from.r, to.r, t), number(from.g, to.g, t), number(from.b, to.b, t), number(from.a, to.a, t) ); } export function array(from: Array, to: Array, t: number): Array { return from.map((d, i) => { return number(d, to[i], t); }); }