phaser/src/geom/index.js

23 lines
518 B
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2019-01-15 16:20:22 +00:00
* @copyright 2019 Photon Storm Ltd.
2019-05-10 15:15:04 +00:00
* @license {@link https://opensource.org/licenses/MIT|MIT License}
2018-02-12 16:01:20 +00:00
*/
2018-01-31 13:54:44 +00:00
/**
* @namespace Phaser.Geom
*/
module.exports = {
2017-01-02 00:53:18 +00:00
Circle: require('./circle'),
Ellipse: require('./ellipse'),
Intersects: require('./intersects'),
Line: require('./line'),
2017-01-03 22:21:47 +00:00
Point: require('./point'),
2017-01-07 01:06:57 +00:00
Polygon: require('./polygon'),
Rectangle: require('./rectangle'),
Triangle: require('./triangle')
};