mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-18 06:38:14 +01:00
32 lines
586 B
Markdown
32 lines
586 B
Markdown
|
# hexagons
|
||
|
|
||
|
A hexagonal structure is useful in many situations. This module creates hexagons in a hexagon.
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
- `radius` : The radius of every hexagon.
|
||
|
- `spacing` : The length of the gap between hexagons.
|
||
|
- `levels` : How many levels if counting from the center?
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
include <hexagons.scad>;
|
||
|
|
||
|
radius = 20;
|
||
|
spacing = 2;
|
||
|
levels = 2;
|
||
|
|
||
|
hexagons(radius, spacing, levels);
|
||
|
|
||
|
![hexagons](images/lib-hexagons-1.JPG)
|
||
|
|
||
|
include <hexagons.scad>;
|
||
|
|
||
|
radius = 20;
|
||
|
spacing = 2;
|
||
|
levels = 3;
|
||
|
|
||
|
hexagons(radius, spacing, levels);
|
||
|
|
||
|
|
||
|
![hexagons](images/lib-hexagons-2.JPG)
|