X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ijackson/git?a=blobdiff_plain;ds=sidebyside;f=th-10254%2FSpindleTeeth.scad;fp=th-10254%2FSpindleTeeth.scad;h=51af77dcfd8f492e3d771128504b7e23403469ee;hb=4001c1d7f18794f0bf604b3943988d13447834c1;hp=0000000000000000000000000000000000000000;hpb=c2a6af02b54ad03e56968837cd073421eeac32c6;p=dl-things.git diff --git a/th-10254/SpindleTeeth.scad b/th-10254/SpindleTeeth.scad new file mode 100644 index 0000000..51af77d --- /dev/null +++ b/th-10254/SpindleTeeth.scad @@ -0,0 +1,35 @@ +/* Printable Filament Spool Spindle, teeth + by Ian Jackson License, GPL v2 or later + based on Printable Filament Spool Spindle for Reprap + by Travis Howse + 2011. License, GPL v2 or later + Based on: + Makerbottable Filament Spool v2.0 + by Randy Young + 2010, 2011. License, GPL v2 or later +**************************************************/ + +include // Libs.scad is @ http://www.thingiverse.com/thing:6021 +include // FilamentSpool.scad is @ http://www.thingiverse.com/thing:8317 + +module SpindleTeeth() +{ + translate([-10,-4.5,-6]) + difference() + { + union() + { + translate([0,-3,0]) cube([10,15,12]); + intersection() { + translate([0,-2,0]) + Spindle(10.5,11,8,0,0,0,5,0,[1.5,18,5]); + translate([5,-3,0]) + cube([50,15,12]); + } + } + translate([9,3.8,-4]) minkowski(){ + cylinder(r=1.5,h=40); + cube([20,1,0.1]); + } + } +}