新增math库

This commit is contained in:
YHH
2025-08-10 16:00:02 +08:00
parent 2783448de5
commit 3b9ae4f384
20 changed files with 5208 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/**
* 动画和插值模块
*
* 提供缓动函数和各种插值功能
*/
export { Easing } from './Easing';
export {
Interpolation,
CachedInterpolator,
type InterpolatorFunction,
type Keyframe
} from './Interpolation';