Another snag, in working from 2d to 3d.
If you have a hull in 2D, then linear extrude its mirror, it won't. Not
sure if hull of a hull is OK, though.
The following code, (viewed in thrown together explains why, I guess)
module profile(){
hull(){
circle (d=40);
translate([50,21]) circle (d=28);
}
}
// moved over for comparison
translate([100,0,0])linear_extrude(20)profile();
translate([100,0,0])linear_extrude(10)mirror([0,1]) profile(); // if only
// this at origin x,y
linear_extrude(20)profile();
// this works
hull(){
mirror([0,1])linear_extrude(10)profile();
}
_______________________________________________
OpenSCAD mailing list
To unsubscribe send an email to
[hidden email]