| Rev | Author | Line No. | Line |
|---|---|---|---|
| 3876 | kaklik | 1 | |
| 2 | module screen_holder(height, screen_radius, thickness ) { |
||
| 3 | difference () { |
||
| 4 | cylinder (h=height/2,r1=screen_radius/4,r2=screen_radius/4 - thickness,$fn=100); |
||
| 5 | |||
| 6 | translate ([0,screen_radius/4,2.5]) |
||
| 7 | rotate ([90,0,0]) |
||
| 8 | cylinder (h=screen_radius/2,r=3, $fn=100); |
||
| 9 | |||
| 10 | translate ([-screen_radius/4,0,2.5]) |
||
| 11 | rotate ([0,90,0]) |
||
| 12 | cylinder (h=screen_radius/2,r=3, $fn=100); |
||
| 13 | } |
||
| 14 | } |
||
| 15 | |||
| 16 | screen_holder(10, 50, 1); |