
Euler Maze
myminifactory
Below is the OpenSCAD code for this design: module base() { translate([0, 0, 1]) { difference() { union() { cylinder(h = 2, r = 4); translate([-3, -3, -1]) square(6, center=true); } translate([-5.25, -2.25, 0.75]) rotate([45, 90, 0]) square(8); } } } module lid() { translate([0, 0, 1]) { union() { cylinder(h = 2, r = 4); translate([-3, -3, -1]) square(6, center=true); } } } module main_body() { difference() { cylinder(h = 10, r = 5.25); translate([0, 0, 7.5]) cube(11, center=true); } } module assembled_piece() { base(); translate([0, 0, -2]) lid(); main_body(); } assembled_piece();
With this file you will be able to print Euler Maze with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Euler Maze.