Organized files

This commit is contained in:
2017-04-20 20:18:19 -04:00
parent 7a26cab7f9
commit ada7d1cc43
5 changed files with 104 additions and 0 deletions

27
misc/holder.scad Normal file
View File

@@ -0,0 +1,27 @@
difference()
{
cylinder(10,10,10);
translate([0,0,2])
{
cylinder(11,9,9);
}
}
//Triangle
scale(.3)
{
rotate([0,90,0])
{
difference()
{
cube(10);
translate([-3,10,0])
{
rotate([45,0,0])
{
cube(30);
}
}
}
}
}