mirror of
https://github.com/photonstorm/phaser
synced 2024-12-19 01:24:48 +00:00
21 lines
990 B
TypeScript
21 lines
990 B
TypeScript
|
import CircleToCircle from './CircleToCircle';
|
||
|
import CircleToRectangle from './CircleToRectangle';
|
||
|
import GetRectangleIntersection from './GetRectangleIntersection';
|
||
|
import LineToLine from './LineToLine';
|
||
|
import LineToRectangle from './LineToRectangle';
|
||
|
import PointToLine from './PointToLine';
|
||
|
import PointToLineSegment from './PointToLineSegment';
|
||
|
import RectangleToRectangle from './RectangleToRectangle';
|
||
|
import RectangleToValues from './RectangleToValues';
|
||
|
export default class Interesects {
|
||
|
static CircleToCircle: typeof CircleToCircle;
|
||
|
static CircleToRectangle: typeof CircleToRectangle;
|
||
|
static GetRectangleIntersection: typeof GetRectangleIntersection;
|
||
|
static LineToLine: typeof LineToLine;
|
||
|
static LineToRectangle: typeof LineToRectangle;
|
||
|
static PointToLine: typeof PointToLine;
|
||
|
static PointToLineSegment: typeof PointToLineSegment;
|
||
|
static RectangleToRectangle: typeof RectangleToRectangle;
|
||
|
static RectangleToValues: typeof RectangleToValues;
|
||
|
}
|