@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
14 lines • 688 B
TypeScript
/**
* Compute 3d bounds of a circle in 3d space
* NOTE: based on https://stackoverflow.com/questions/2592011/bounding-boxes-for-circle-and-arcs-in-3d
* @param {AABB3} result
* @param {number} centerX
* @param {number} centerY
* @param {number} centerZ
* @param {number} normalX orientation of the circle
* @param {number} normalY orientation of the circle
* @param {number} normalZ orientation of the circle
* @param {number} radius
*/
export function compute_circle_bounding_box(result: AABB3, centerX: number, centerY: number, centerZ: number, normalX: number, normalY: number, normalZ: number, radius: number): void;
//# sourceMappingURL=compute_circle_bounding_box.d.ts.map