interpolate method
Interpolates to step
between this
and end
.
Implementation
@override
HspColor interpolate(ColorModel end, double step) {
assert(step >= 0.0 && step <= 1.0);
return super.interpolate(end, step) as HspColor;
}
Interpolates to step
between this
and end
.
@override
HspColor interpolate(ColorModel end, double step) {
assert(step >= 0.0 && step <= 1.0);
return super.interpolate(end, step) as HspColor;
}