1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-08-31 00:39:55 +02:00

first commit

This commit is contained in:
Chris Palmer
2012-03-12 01:13:07 +00:00
commit d22174869f
68 changed files with 90115 additions and 0 deletions

31
scad/pulley.scad Normal file
View File

@@ -0,0 +1,31 @@
//
// Mendel90
//
// GNU GPL v2
// nop.head@gmail.com
// hydraraptor.blogspot.com
//
include <conf/config.scad>
module pulley_stl() {
stl("pulley");
color([1,0,0])
translate([-10, -10, 0])
import("../imported_stls/pulley.stl");
}
module pulley_assembly() {
color([1,0,0]) render() pulley_stl();
rotate([90, 0, 0]) {
translate([0, 4, -5/2 - 6])
screw(M3_grub_screw, 6);
translate([0, 4, -6])
rotate([0,0,30])
nut(M3_nut);
}
}
if(1)
pulley_assembly();
else
pulley_stl();