From: Ian Jackson Date: Fri, 15 Mar 2013 20:52:35 +0000 (+0000) Subject: tablet-stand: wip, before remove antifoot_overlap X-Git-Tag: filamentspool-v2-release~581^2~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=aa515fdbe89e343630ee3bd56e6cfb375cad0d8f;hp=e944e1efb97260ceee77bfaa20b9e56798a6e9e2;p=reprap-play.git tablet-stand: wip, before remove antifoot_overlap --- diff --git a/tablet-stand.scad b/tablet-stand.scad index bcad4f3..b2955f2 100644 --- a/tablet-stand.scad +++ b/tablet-stand.scad @@ -6,16 +6,22 @@ antifoot_slope = 1.0; antifoot_depth = 10; antifoot_base = 8; antifoot_front = 5; +antifoot_overlap = 5; module AntiFoot(){ antifoot_back = antifoot_depth + antifoot_height/antifoot_slope; - polygon([[-antifoot_front, -antifoot_base], + translate([-antifoot_front-antifoot_back, antifoot_width/2, 0]) + rotate([90,0,0]) + translate([antifoot_front, antifoot_base, 0]) + linear_extrude(height=antifoot_width) + polygon([[-antifoot_front, -antifoot_base], [-antifoot_front, antifoot_height], [0, antifoot_height], [0, 0], [antifoot_depth, 0], [antifoot_back, antifoot_height], - [antifoot_back, -antifoot_base]]); + [antifoot_back+antifoot_overlap, antifoot_height], + [antifoot_back+antifoot_overlap, -antifoot_base]]); } AntiFoot();