phaser/src/geom/index.js

23 lines
544 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.
2018-02-12 16:01:20 +00:00
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
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')
};