Newer
Older
pixi.js / src / core / math / index.js
@Chad Engler Chad Engler on 21 Mar 2015 336 bytes Move items into their namespace
module.exports = {
    Point:      require('./Point'),
    Matrix:     require('./Matrix'),

    Circle:     require('./shapes/Circle'),
    Ellipse:    require('./shapes/Ellipse'),
    Polygon:    require('./shapes/Polygon'),
    Rectangle:  require('./shapes/Rectangle'),
    RoundedRectangle: require('./shapes/RoundedRectangle')
};