Newer
Older
pixi.js / packages / math / src / index.js
@Matt Karl Matt Karl on 31 Oct 2017 607 bytes Next Restructure for v5 (#4387)
/**
 * Math classes and utilities mixed into PIXI namespace.
 *
 * @lends PIXI
 */
export { default as Point } from './Point';
export { default as ObservablePoint } from './ObservablePoint';
export { default as Matrix } from './Matrix';
export { default as GroupD8 } from './GroupD8';

export { default as Circle } from './shapes/Circle';
export { default as Ellipse } from './shapes/Ellipse';
export { default as Polygon } from './shapes/Polygon';
export { default as Rectangle } from './shapes/Rectangle';
export { default as RoundedRectangle } from './shapes/RoundedRectangle';

export * from './const';