You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
534 B
15 lines
534 B
4 weeks ago
|
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;
|