Files
Webklar.com/node_modules/@dimforge/rapier3d-compat/dynamics/ccd_solver.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

16 lines
436 B
TypeScript

import { RawCCDSolver } from "../raw";
/**
* The CCD solver responsible for resolving Continuous Collision Detection.
*
* To avoid leaking WASM resources, this MUST be freed manually with `ccdSolver.free()`
* once you are done using it.
*/
export declare class CCDSolver {
raw: RawCCDSolver;
/**
* Release the WASM memory occupied by this narrow-phase.
*/
free(): void;
constructor(raw?: RawCCDSolver);
}