chiark / gitweb /
25d7efaa30fd47cba669d5d9dd64a5689144a939
[reprap-play.git] / maglite-holder.scad
1 // -*- C -*-
2
3 dxf_off = [ -40, -85 ];
4
5 torch_lit_dia = 37.5;
6 torch_big_dia = 56.5;
7 torch_tot_len = 256;
8 torch_big_len = 60;
9
10 module Torch(){
11   hull(){
12     rotate_extrude()
13       translate(dxf_off)
14       import(file="maglite-holder-torch-curve.dxf", convexity=10, center=true);
15   }
16   translate([0,0, -1])
17     cylinder(r=torch_lit_dia/2, h= torch_tot_len - torch_big_len + 1);
18 }
19
20 Torch();