Files
esengine/packages/math/src/index.ts
2025-09-26 17:45:52 +08:00

25 lines
599 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* ECS Framework Math Library
*
* 2D数学库为游戏开发提供完整的数学工具
* - 基础数学类(向量、矩阵、几何形状)
* - 碰撞检测算法
* - 动画插值和缓动函数
* - 数学工具函数
*/
// 核心数学类
export { Vector2 } from './Vector2';
export { Vector3 } from './Vector3';
export { Matrix3 } from './Matrix3';
export { Rectangle } from './Rectangle';
export { Circle } from './Circle';
// 数学工具
export { MathUtils } from './MathUtils';
// 碰撞检测
export * from './Collision';
// 动画和插值
export * from './Animation';