16 lines
307 B
TypeScript
16 lines
307 B
TypeScript
|
|
/**
|
||
|
|
* @zh 路径平滑模块
|
||
|
|
* @en Path Smoothing Module
|
||
|
|
*/
|
||
|
|
|
||
|
|
export {
|
||
|
|
bresenhamLineOfSight,
|
||
|
|
raycastLineOfSight,
|
||
|
|
LineOfSightSmoother,
|
||
|
|
CatmullRomSmoother,
|
||
|
|
CombinedSmoother,
|
||
|
|
createLineOfSightSmoother,
|
||
|
|
createCatmullRomSmoother,
|
||
|
|
createCombinedSmoother
|
||
|
|
} from './PathSmoother';
|