List: discuss@lists.openscad.org
From: Raymond West
Re: wall thicken
Thu, Dec 12, 2024 10:07 PM
module myshape(){
import("P:/Docs/openscad/partscrew.stl");
}
difference(){
myshape();
cube(500);
}
top=120;
bot=100;
t=5;
step=0.1;
translate([50,0,0])
widen(top,bot,t)myshape();
module widen(top=2,bot=1,t=10){ //widens all walls
translate([0,0,bot])
echo(top,bot,t);
for (j=[bot:step:top]){
echo(j);