From e944e1efb97260ceee77bfaa20b9e56798a6e9e2 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 15 Mar 2013 20:47:35 +0000 Subject: [PATCH] tablet-stand: wip --- tablet-stand.scad | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tablet-stand.scad 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(); -- 2.30.2