
Fractal M
sketchfab
Here is a new letter M on a 5x5 pixel grid, made up of smaller letter Ms. Made with the following OpenSCAD code: shape = [ [1,0,0,0,1], [1,1,0,1,1], [1,0,1,0,1], [1,0,0,0,1], [1,0,0,0,1] ]; size = 25; module show_shape(size) { for (row = [ 0 : len(shape) - 1 ]) { for (col = [ 0 : len(shape[row]) - 1 ]) { if( shape[row][col] ){ translate([rowsize/5,colsize/5]) if(size == 1){ square(size/5); } else{ show_shape(size/5); } } } } } linear_extrude(size/5) show_shape(size);
With this file you will be able to print Fractal M 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 Fractal M.