From c51d58c001ad2b846e8f6ddc7f19cb378e3c59f0 Mon Sep 17 00:00:00 2001 From: pacien Date: Mon, 12 Aug 2019 03:33:39 +0200 Subject: fix hole diameter in base --- tabletop_tablet_stand_base.scad | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/tabletop_tablet_stand_base.scad b/tabletop_tablet_stand_base.scad index b168f44..bdb1aab 100644 --- a/tabletop_tablet_stand_base.scad +++ b/tabletop_tablet_stand_base.scad @@ -1,29 +1,20 @@ -thickness = 12; -legWidth = 20; -legWallThickness = 2; +thickness = 15; +legWidth = 50; rearLegLength = 40; frontLegLength = 90; frontLegCenterRotationDegrees = 65; -legLift = 2; -nutInsetHeight = 4; -nutInsetDiameter = 15; +nutInsetHeight = 7; +nutInsetDiameter = 20; threadDiameter = 6; module leg(width, length, thickness) { - difference() { - translate([-width/2, 0, 0]) - cube([width, length, thickness]); - - translate([-width/2+legWallThickness, 0, legWallThickness]) - cube([width - 2*legWallThickness, length, thickness - legWallThickness]); - } + translate([-width/2, 0, 0]) + cube([width, length, thickness]); translate([0, length, 0]) - cylinder(r = width/2, h = thickness + legLift); - - cylinder(r = width/2, h = thickness); + cylinder(r = width/2, h = thickness); } difference() { -- cgit v1.2.3