You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
545 B
23 lines
545 B
// @flow
|
|
|
|
import Color from './color.js';
|
|
|
|
export function number(a: number, b: number, t: number): number {
|
|
return (a * (1 - t)) + (b * t);
|
|
}
|
|
|
|
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<number>, to: Array<number>, t: number): Array<number> {
|
|
return from.map((d, i) => {
|
|
return number(d, to[i], t);
|
|
});
|
|
}
|