Spaces:
Running
Running
File size: 332 Bytes
b24de8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { Vector3 } from "./Vector3";
declare class Box3 {
min: Vector3;
max: Vector3;
constructor(min: Vector3, max: Vector3);
contains(point: Vector3): boolean;
intersects(box: Box3): boolean;
size(): Vector3;
center(): Vector3;
expand(point: Vector3): void;
permute(): void;
}
export { Box3 };
|