Skip to content
Snippets Groups Projects
Commit 886a936d authored by fxk8y's avatar fxk8y :spider:
Browse files

Remove irrelevant operator

parent 49f61594
No related branches found
No related tags found
No related merge requests found
......@@ -369,11 +369,11 @@ module crossNPipe(width, height, length, radius, strength, N, center=false) {
tz = center ? -l/2 : 0;
difference() {
for (rz=[0:360/N:360]) rotate([-90, 0, rz]) translate([0, 0, tz]) linear_extrude(l) difference() {
for (rz=[0:360/N:360]) rotate([-90, 0, rz]) translate([0, 0, tz]) linear_extrude(l) {
roundRect(w, h, r);
}
for (rz=[0:360/N:360]) rotate([-90, 0, rz])translate([0, 0, tz]) linear_extrude(l + epsilon) difference() {
for (rz=[0:360/N:360]) rotate([-90, 0, rz])translate([0, 0, tz]) linear_extrude(l + epsilon) {
roundRect(w - _str*2, h - _str*2, r - _str);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment