viewing paste Unknown #17916 | C

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
$fn=25;
 
width=300;
height=210;
middleR=30;
 
projection(cut = true){
    difference(){
        cube([width,height,5]);
        
        translate([width/2,height/2,-0.1]){
            cylinder(r=middleR, h=5.2);
        }
        translate([width/2-60,height/2-30,-0.1]){
            cylinder(r=5, h=5.2);
        }
        translate([width/2-65,height/2+40,-0.1]){
            cylinder(r=5, h=5.2);
        }
        translate([width/2,height/2+65,-0.1]){
            cylinder(r=5, h=5.2);
        }
        translate([width/2+60,height/2-30,-0.1]){
            cylinder(r=5, h=5.2);
        }
        translate([width/2+65,height/2+40,-0.1]){
            cylinder(r=5, h=5.2);
        }
    }
}
Viewed 625 times, submitted by Guest.