UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

16 lines 460 B
export class BVHQueryIntersectsSphere extends BVHQuery { /** * * @param {number[]|ArrayLike<number>} sphere * @returns {BVHQueryIntersectsRay} */ static from(sphere: number[] | ArrayLike<number>): BVHQueryIntersectsRay; /** * * @type {number[]} */ sphere: number[]; evaluate(node: any, tree: any): boolean; } import { BVHQuery } from "./BVHQuery.js"; //# sourceMappingURL=BVHQueryIntersectsSphere.d.ts.map