@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
16 lines • 490 B
TypeScript
export class BVHQueryIntersectsSphere extends BVHQuery {
/**
*
* @param {number[]|ArrayLike<number>} sphere (x,y,z,radius)
* @returns {BVHQueryIntersectsRay}
*/
static from(sphere: number[] | ArrayLike<number>): BVHQueryIntersectsRay;
/**
* [x,y,z,radius]
* @type {number[]}
*/
sphere: number[];
evaluate(node: any, tree: any): boolean;
}
import { BVHQuery } from "./BVHQuery.js";
//# sourceMappingURL=BVHQueryIntersectsSphere.d.ts.map