diff --git a/openscad/own/hex-rackpanels/hexpanel.scad b/openscad/own/hex-rackpanels/hexpanel.scad index e111ab1..aa35bc3 100644 --- a/openscad/own/hex-rackpanels/hexpanel.scad +++ b/openscad/own/hex-rackpanels/hexpanel.scad @@ -36,10 +36,10 @@ module panel(){ translate([0,0,-q])cylinder(d=magnet_dia,h=magnet_h); } if (magnet_count>1){ - for (m=[1:360/magnet_count:359]){ + for (m=[0:360/magnet_count:360]){ rotate([0,0,m]){ translate([panel_dia/4,0,-q]){ - cylinder(d=magnet_dia,h=magnet_h); + #cylinder(d=magnet_dia,h=magnet_h); } } }