From 244ae02c41465d4ebecf37ccc5a8a33a26567f3a Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Tue, 17 Aug 2021 14:12:40 -0700 Subject: [PATCH] Add x_offset, y_offset for making small alignment tweaks. A bit hacky, but sometimes the honeycombs make an ugly pattern along the perimeter and you'd like to nudge it a little. --- voussoir/honeycombs.scad | 3 +++ 1 file changed, 3 insertions(+) diff --git a/voussoir/honeycombs.scad b/voussoir/honeycombs.scad index 88daa35..9610251 100644 --- a/voussoir/honeycombs.scad +++ b/voussoir/honeycombs.scad @@ -84,6 +84,8 @@ module interior_honeycomb( x_span, y_span, perimeter, + x_offset=0, + y_offset=0, rotate=0, center=false ) @@ -98,6 +100,7 @@ module interior_honeycomb( intersection() { rotate([0, 0, rotate]) + translate([x_offset, y_offset]) honeycomb_mesh(outer_radius, inner_radius, x_span, y_span, center=center); children(); }