version.scad docs tweaks.

This commit is contained in:
Garth Minette
2022-03-31 22:26:56 -07:00
parent b4c53f1ba9
commit 6d15c95dde
2 changed files with 17 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ include <rounding.scad>
/// _hex_offset_ring(d=1, lev=3); // Returns a hex ring of 18 points.
function _hex_offset_ring(d, lev=0) =
(lev == 0)? [[0,0]] :
subdivide_path(reverse(hexagon(r=lev*d)), refine=lev);
reverse(subdivide_path(hexagon(r=lev*d), refine=lev));
/// Function: _hex_offsets()