chiark / gitweb /
sewing-table: rear-profile: profile main spline
[reprap-play.git] / question-token.scad
1 // -*- C -*-
2
3 tokenrad=13;
4 tokenthick=1.9;
5
6 joinwidth=1.0;
7
8 circlerad=15;
9
10 module Letter() {
11   translate([-circlerad,-circlerad])
12     import("question-question.dxf", convexity=100);
13 }
14
15 module Token() { ////toplevel
16   rotate([0,180,0])
17   linear_extrude(height=tokenthick) union(){
18     difference(){
19       %circle(tokenrad);
20       Letter();
21     }
22   }
23 }
24
25 Token();