/* MakerBot Logo Coin OpenSCAD DXF extrusion tutorial code created for Getting Started With MakerBot: http://shop.oreilly.com/product/0636920026723.do ----------------------------------------------------- 11.10.2012 MakerBot M logo DXF: - 2 seperate files each created in Inkscape - then converted to DXFs using Inkscape OpenSCAD DXF Export: http://www.thingiverse.com/thing:14221 (Thanks polymaker!) - Both DXF then imported into OpenSCAD and extruded into a coin. */ union(){ linear_extrude(height=7) import(file = "MakerbotM.dxf"); linear_extrude(height=1.5) import(file = "MakerbotM_Base.dxf"); }