mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 19:43:28 +00:00
21 lines
583 B
JavaScript
21 lines
583 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2013-2023 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')
|
|
|
|
};
|