@rickosborne/hexgrid
Version:
Rick Osborne's collection of hexagonal grid-related code.
10 lines (9 loc) • 490 B
JavaScript
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
import { cubeFromQR } from "./cube.mjs";
import { qrsIntersection } from "./qrs-intersection.mjs";
const cubeIntersection = /* @__PURE__ */ __name((center1, radius1, center2, radius2 = radius1) => qrsIntersection(cubeFromQR, center1, radius1, center2, radius2), "cubeIntersection");
export {
cubeIntersection
};
//# sourceMappingURL=cube-intersection.mjs.map