From: Ian Jackson Date: Fri, 24 Aug 2012 16:13:25 +0000 (+0100) Subject: 10254 new my SpindleTeeth X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ijackson/git?a=commitdiff_plain;h=4001c1d7f18794f0bf604b3943988d13447834c1;p=dl-things.git 10254 new my SpindleTeeth --- 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]); + } + } +}