From: Ian Jackson Date: Fri, 15 Mar 2013 20:47:35 +0000 (+0000) Subject: tablet-stand: wip X-Git-Tag: filamentspool-v2-release~581^2~8 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=e944e1efb97260ceee77bfaa20b9e56798a6e9e2;hp=d54f8a2a6d29737afd97dee304fa4abd302f2377 tablet-stand: wip --- diff --git a/tablet-stand.scad b/tablet-stand.scad new file mode 100644 index 0000000..bcad4f3 --- /dev/null +++ b/tablet-stand.scad @@ -0,0 +1,21 @@ +// -*- C -*- + +antifoot_width = 15; +antifoot_height = 15; +antifoot_slope = 1.0; +antifoot_depth = 10; +antifoot_base = 8; +antifoot_front = 5; + +module AntiFoot(){ + antifoot_back = antifoot_depth + antifoot_height/antifoot_slope; + 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();