Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/beamChain-1.scad
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function beamPoints(r1,r2,rStart=0,rEnd=0)=[
linear_extrude(1){

// chained lines by themselves
translate(){
translate([0,0,0]){
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One could also remove the translate, but this would make example less readable, so I would say this is ok.
A union would also be possible

radiiPoints=beamPoints(0,0);
polygon(polyRound(beamChain(radiiPoints,offset1=0.02, offset2=-0.02),20));
}
Expand Down