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