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