feige
1 天以前 f43ef0c77c6f437bd0f7459d75168e6f77e334bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { PointLike } from './Point';
import BoundingRect from './BoundingRect';
import { MatrixArray } from './matrix';
declare class OrientedBoundingRect {
    private _corners;
    private _axes;
    private _origin;
    constructor(rect?: BoundingRect, transform?: MatrixArray);
    fromBoundingRect(rect: BoundingRect, transform?: MatrixArray): void;
    intersect(other: OrientedBoundingRect, mtv?: PointLike): boolean;
    private _intersectCheckOneSide;
    private _getProjMinMaxOnAxis;
}
export default OrientedBoundingRect;