/jscad-honeycomb

A library to create hexagon tile patterns

Primary LanguageTypeScriptMIT LicenseMIT

JSCAD Honeycomb

This is a JSCAD package that generates honeycomb patterns.

image

Usage on jscad.app

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 };