chiark / gitweb /
velux-window-grip: wip
[reprap-play.git] / filament-test.scad
1 // -*- C -*-
2 translate([3,3,0]) mirror([1,1,0]) cube([15,15,1]);
3
4 multmatrix([[   1,      0,      0,      0       ],
5         [       0,      1,      1.0,    0       ],
6         [       0,      0,      1,      0       ],
7         [       0,      0,      0,      1       ]])
8  cylinder(r=6.1/2, h=8);
9
10 w=0.5;
11
12 translate([15,0])
13 difference(){
14   cube([8,8,8]);
15   translate([w,w,-1]) cube([8-w*2, 8-w*2, 8+2]);
16 }