mirror of
https://github.com/photonstorm/phaser
synced 2025-01-12 21:28:53 +00:00
21 lines
578 B
JavaScript
21 lines
578 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2020 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Math.Distance
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Between: require('./DistanceBetween'),
|
|
BetweenPoints: require('./DistanceBetweenPoints'),
|
|
BetweenPointsSquared: require('./DistanceBetweenPointsSquared'),
|
|
Chebyshev: require('./DistanceChebyshev'),
|
|
Power: require('./DistancePower'),
|
|
Snake: require('./DistanceSnake'),
|
|
Squared: require('./DistanceSquared')
|
|
|
|
};
|