From: Ian Jackson Date: Fri, 15 Mar 2013 21:20:18 +0000 (+0000) Subject: tablet-stand: wip X-Git-Tag: filamentspool-v2-release~581^2~3 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=17c176d1d173c5ea958d49e90dfda06eec75e176 tablet-stand: wip --- diff --git a/tablet-stand.scad b/tablet-stand.scad index dec652a..1941714 100644 --- a/tablet-stand.scad +++ b/tablet-stand.scad @@ -13,10 +13,15 @@ antifoot_front = 5; leg_width = 8; leg_thick = 8; +post_height = 50; +orifice_dia = 22.1 + 0.3; +post_thick = 8; + stretcher_thick = 5; stretcher_width = 8; antifoot_back = antifoot_depth + antifoot_height/antifoot_slope; +post_rad = orifice_dia/2 + post_thick; module AntiFoot(){ translate([-antifoot_front-antifoot_back, antifoot_width/2, 0]) @@ -50,9 +55,19 @@ module RightLeg(){ mirror([0,1,0]) LeftLeg(); } +module Post(){ + cylinder(h=post_height, r=post_rad, $fn=70); +} + module Stand(){ - LeftLeg(); - RightLeg(); + difference(){ + union(){ + LeftLeg(); + RightLeg(); + Post(); + } + translate([0,0,-1]) cylinder(h=post_height+2, r=orifice_dia/2); + } } Stand();