@rickosborne/hexgrid
Version:
Rick Osborne's collection of hexagonal grid-related code.
6 lines • 333 B
TypeScript
import type { QRSAdder, QRSBuilder, QRSPoint, QRSSystem } from "./qrs.js";
/**
* Calculate all the points within a given radius of a given center.
*/
export declare const qrsRange: <P extends QRSPoint<QRSSystem>>(addFn: QRSAdder<P>, buildFn: QRSBuilder<P>, center: P, radius: number) => P[];
//# sourceMappingURL=qrs-range.d.ts.map