1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-08-28 07:20:12 +02:00

Fixed Tesselation warnings by removing repeated first vertex in polygons.

This commit is contained in:
Chris Palmer
2014-02-05 13:26:52 +00:00
parent d342a69be2
commit 718e8ebd4d
2 changed files with 4 additions and 3 deletions

View File

@@ -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]
]);
}
}
@@ -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();

View File

@@ -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],
]);
}
}