Files
esengine/packages/framework/pathfinding/src/smoothing/index.ts

16 lines
307 B
TypeScript
Raw Normal View History

/**
* @zh
* @en Path Smoothing Module
*/
export {
bresenhamLineOfSight,
raycastLineOfSight,
LineOfSightSmoother,
CatmullRomSmoother,
CombinedSmoother,
createLineOfSightSmoother,
createCatmullRomSmoother,
createCombinedSmoother
} from './PathSmoother';