chiark / gitweb /
cdc91a2b343555b792c93b12ed411a9ca9a289e4
[reprap-play.git] / shelf-label-holder.scad
1 // -*- C -*-
2
3 prong_nomdepth = 15;
4 prong_curverad = 30;
5 prong_thick = 1.0;
6 prong_maxdepth = 18;
7
8 module ProngElevationUnrotated(){
9   intersection(){
10     union(){
11       translate([ prong_nomdepth, prong_curverad ])
12         circle( prong_curverad , $fa=0.5 );
13       translate([ -10, 0 ])
14         square([ prong_nomdepth + 10, 10 ]);
15     }
16     translate([-5, -5])
17       square([ prong_maxdepth + 5, prong_thick + 5]);
18   }
19 }
20
21 ProngElevationUnrotated();