@macrostrat/column-components
Version:
React rendering primitives for stratigraphic columns
16 lines (15 loc) • 381 B
JavaScript
;
const Color = require("../Color.cjs");
const index = require("./index.cjs");
const rgb = (col1, col2, f) => {
const xyz0 = col1._rgb;
const xyz1 = col2._rgb;
return new Color(
xyz0[0] + f * (xyz1[0] - xyz0[0]),
xyz0[1] + f * (xyz1[1] - xyz0[1]),
xyz0[2] + f * (xyz1[2] - xyz0[2]),
"rgb"
);
};
index.rgb = rgb;
//# sourceMappingURL=rgb.cjs.map