mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
34 lines
1.6 KiB
TypeScript
34 lines
1.6 KiB
TypeScript
import * as Angle from './angle';
|
|
import * as Easing from './easing';
|
|
import * as Distance from './distance';
|
|
import * as Fuzzy from './fuzzy';
|
|
import * as Interpolation from './interpolation';
|
|
import * as Pow2 from './pow2';
|
|
import * as Snap from './snap';
|
|
export { Angle, Distance, Easing, Fuzzy, Interpolation, Pow2, Snap };
|
|
export * from "./const";
|
|
export { default as Average } from "./Average";
|
|
export { default as Bernstein } from "./Bernstein";
|
|
export { default as Between } from "./Between";
|
|
export { default as CatmullRom } from "./CatmullRom";
|
|
export { default as CeilTo } from "./CeilTo";
|
|
export { default as Clamp } from "./Clamp";
|
|
export { default as DegToRad } from "./DegToRad";
|
|
export { default as Difference } from "./Difference";
|
|
export { default as Factorial } from "./Factorial";
|
|
export { default as FloatBetween } from "./FloatBetween";
|
|
export { default as FloorTo } from "./FloorTo";
|
|
export { default as Linear } from "./Linear";
|
|
export { default as MaxAdd } from "./MaxAdd";
|
|
export { default as MinSub } from "./MinSub";
|
|
export { default as Percent } from "./Percent";
|
|
export { default as RadToDeg } from "./RadToDeg";
|
|
export { default as Rotate } from "./Rotate";
|
|
export { default as RotateAround } from "./RotateAround";
|
|
export { default as RotateAroundDistance } from "./RotateAroundDistance";
|
|
export { default as RoundAwayFromZero } from "./RoundAwayFromZero";
|
|
export { default as RoundTo } from "./RoundTo";
|
|
export { default as SinCosTableGenerator } from "./SinCosTableGenerator";
|
|
export { default as SmootherStep } from "./SmootherStep";
|
|
export { default as Within } from "./Within";
|
|
export { default as Wrap } from "./Wrap";
|