Skip to content

Commit

Permalink
Fixed Tesselation warnings by removing repeated first vertex in polyg…
Browse files Browse the repository at this point in the history
…ons.
  • Loading branch information
nophead committed Feb 5, 2014
1 parent d342a69 commit 718e8eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions scad/spool_holder.scad
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ module pie_slice(r, start_angle, end_angle) {
[R * cos(a2), R * sin(a2)],
[R * cos(a3), R * sin(a3)],
[R * cos(a4), R * sin(a4)],
[0,0]
]);
}
}
Expand Down Expand Up @@ -438,4 +437,7 @@ if(1)
translate([0, 0, - spool_z])
spool_assembly();
else
spool_holder_brackets_stl();
if(1)
spool_holder_brackets_stl();
else
dust_filter_stl();
1 change: 0 additions & 1 deletion scad/vitamins/nuts.scad
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ module wingnut(type) {
[bottom_rad * cos(top_angle) - eta, 0],
[wing_span / 2 - wing_width / 2, wing_height - wing_width / 2],
[top_rad * cos(top_angle) - eta, thickness],
[bottom_rad * cos(top_angle) - eta, 0],
]);
}
}
Expand Down

0 comments on commit 718e8eb

Please sign in to comment.