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')
};