Renamed files. Added covers scad files

This commit is contained in:
Christoffer Martinsson
2018-02-15 16:24:51 +01:00
parent f81661b800
commit 483432187e
15 changed files with 34332 additions and 0 deletions

11
scad/button_middle.scad Normal file
View File

@@ -0,0 +1,11 @@
button_b = 6;
button_t = 4.5;
module trigger_button_small (){
translate([0,0,0])cylinder(r=button_b/2, h=1, center=true, $fn=100);
translate([0,0,(15+1)/2])cylinder(r=button_t/2, h=15, center=true, $fn=100);
}
trigger_button_small();