@deck.gl/core
Version:
deck.gl core library
24 lines (19 loc) • 483 B
text/typescript
// deck.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import {lerp} from '@math.gl/core';
import Transition from './transition';
export default class CPUInterpolationTransition extends Transition {
_value;
get value() {
return this._value;
}
_onUpdate() {
const {
time,
settings: {fromValue, toValue, duration, easing}
} = this;
const t = easing(time / duration);
this._value = lerp(fromValue, toValue, t);
}
}