mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 20:13:35 +00:00
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
|
module.exports = {
|
||
|
|
||
|
// Collections of functions
|
||
|
Angle: require('./angle/'),
|
||
|
Distance: require('./distance/'),
|
||
|
Easing: require('./easing/'),
|
||
|
Fuzzy: require('./fuzzy/'),
|
||
|
Interpolation: require('./interpolation/'),
|
||
|
Pow2: require('./pow2/'),
|
||
|
Snap: require('./snap/'),
|
||
|
|
||
|
// Single functions
|
||
|
Average: require('./Average'),
|
||
|
Bernstein: require('./Bernstein'),
|
||
|
Between: require('./Between'),
|
||
|
CatmullRom: require('./CatmullRom'),
|
||
|
CeilTo: require('./CeilTo'),
|
||
|
Clamp: require('./Clamp'),
|
||
|
DegToRad: require('./DegToRad'),
|
||
|
Difference: require('./Difference'),
|
||
|
Factorial: require('./Factorial'),
|
||
|
FloatBetween: require('./FloatBetween'),
|
||
|
FloorTo: require('./FloorTo'),
|
||
|
Linear: require('./Linear'),
|
||
|
MaxAdd: require('./MaxAdd'),
|
||
|
MinSub: require('./MinSub'),
|
||
|
Percent: require('./Percent'),
|
||
|
RadToDeg: require('./RadToDeg'),
|
||
|
Rotate: require('./Rotate'),
|
||
|
RotateAround: require('./RotateAround'),
|
||
|
RoundAwayFromZero: require('./RoundAwayFromZero'),
|
||
|
RoundTo: require('./RoundTo'),
|
||
|
SinCosTableGenerator: require('./SinCosTableGenerator'),
|
||
|
SmootherStep: require('./SmootherStep'),
|
||
|
SmoothStep: require('./SmoothStep'),
|
||
|
Within: require('./Within'),
|
||
|
Wrap: require('./Wrap')
|
||
|
|
||
|
};
|