This is a JSCAD package that generates honeycomb patterns.
You can use this package on the jscad.app website like so:
const { honeycomb } = require("jscad-honeycomb");
function main() {
return honeycomb({
rows: 3,
columns: 3,
radius: 10,
gap: 5,
height: 5,
});
}
module.exports = { main };