Files
aaf-systems-homepage/app/node_modules/@dimforge/rapier3d-compat/geometry/broad_phase.d.ts
2025-07-28 22:43:55 +01:00

16 lines
420 B
TypeScript

import { RawBroadPhase } from "../raw";
/**
* The broad-phase used for coarse collision-detection.
*
* To avoid leaking WASM resources, this MUST be freed manually with `broadPhase.free()`
* once you are done using it.
*/
export declare class BroadPhase {
raw: RawBroadPhase;
/**
* Release the WASM memory occupied by this broad-phase.
*/
free(): void;
constructor(raw?: RawBroadPhase);
}