From 9af9463dbf90818f6b152365a96e624312450a84 Mon Sep 17 00:00:00 2001 From: Michael Sippel Date: Mon, 7 Oct 2024 21:24:15 +0200 Subject: [PATCH] make hexagons bigger --- handlebar_grip.scad | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/handlebar_grip.scad b/handlebar_grip.scad index 906801d..0361e22 100644 --- a/handlebar_grip.scad +++ b/handlebar_grip.scad @@ -81,17 +81,17 @@ module hexshape( h0=10 ) { translate([0,0,0]) rotate([90,0,0]) for( x = [0:5] ) { -for( y = [0:12] ) { +for( y = [0:10] ) { //translate([0, 0.8*(y*y) + 5 * y + 10,0]) - s0 = 0.5 + (y/24); - s = s0*s0; + s0 = 0.6 + (y/24); + s = (s0*s0); rotate([0, 80-(x*60) * s ,0]) - translate([0,(x%2)*7+y*10, DIAM/2+0.5]) + translate([0,(x%2)*7+y*13, DIAM/2+0.5]) difference() { cylinder(h=h0, d=14*s, $fn=6); translate([0,0,-1]) - cylinder(h=h0+3, d=10*s, $fn=6); + cylinder(h=h0+3, d=8*s, $fn=6); } } }