chiark / gitweb /
tablet-stand: wip
[reprap-play.git] / tablet-stand.scad
1 // -*- C -*-
2
3 antifoot_width = 15;
4 antifoot_height = 15;
5 antifoot_slope = 1.0;
6 antifoot_depth = 10;
7 antifoot_base = 8;
8 antifoot_front = 5;
9
10 module AntiFoot(){
11   antifoot_back = antifoot_depth + antifoot_height/antifoot_slope;
12   polygon([[-antifoot_front, -antifoot_base],
13            [-antifoot_front,  antifoot_height],
14            [0,               antifoot_height],
15            [0,               0],
16            [antifoot_depth,  0],
17            [antifoot_back, antifoot_height],
18            [antifoot_back, -antifoot_base]]);
19 }
20
21 AntiFoot();