SourceTermAnalysisSystem_vue/node_modules/.vite/deps/chunk-LMC3RO5P.js
2026-05-15 10:22:44 +08:00

22 lines
323 B
JavaScript

// node_modules/ol/easing.js
function easeIn(t) {
return Math.pow(t, 3);
}
function easeOut(t) {
return 1 - easeIn(1 - t);
}
function inAndOut(t) {
return 3 * t * t - 2 * t * t * t;
}
function linear(t) {
return t;
}
export {
easeIn,
easeOut,
inAndOut,
linear
};
//# sourceMappingURL=chunk-LMC3RO5P.js.map