Quote Originally Posted by curious aardvark View Post
Actually those 7 lines are 90% of the design done lol.
Quote Originally Posted by curious aardvark View Post
Actually those 7 lines are 90% of the design done lol.
Those 7 lines are probably better done with a cylinder. And should be about 2% of design effort.Try this in OpenScad:corner();module corner() { difference() { union() { cube([10,10,10]); translate([5,-1,0]) cylinder(r=2, h=1, $fn=75); } translate([-1,-1,1]) cube([10,10,10]); translate([1,5,-1]) cylinder(r=2, h=5, $fn=75); }}