/* 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 MendelSpindle() { difference() { union() { translate([0,-2,0]) Spindle(10.5,11,8,0,0,0,5,0,[1.5,18,5]); translate([-65,0,0]) cube([70,10,10]); translate([-60,9,0]) rotate([0,0,150]) ClipBar(); } } } module ClipBar() { difference() { cube([57,10,10]); rotate([0,0,-13]) { translate([7,11.1,-1]) cylinder(r=4,h=12); translate([7+37.5,11.1,-1]) cylinder(r=4,h=12); } } } MendelSpindle();