mirror of
https://github.com/nophead/Mendel90.git
synced 2025-08-28 15:29:48 +02:00
Fixed Tesselation warnings by removing repeated first vertex in polygons.
This commit is contained in:
@@ -75,7 +75,6 @@ module pie_slice(r, start_angle, end_angle) {
|
|||||||
[R * cos(a2), R * sin(a2)],
|
[R * cos(a2), R * sin(a2)],
|
||||||
[R * cos(a3), R * sin(a3)],
|
[R * cos(a3), R * sin(a3)],
|
||||||
[R * cos(a4), R * sin(a4)],
|
[R * cos(a4), R * sin(a4)],
|
||||||
[0,0]
|
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -438,4 +437,7 @@ if(1)
|
|||||||
translate([0, 0, - spool_z])
|
translate([0, 0, - spool_z])
|
||||||
spool_assembly();
|
spool_assembly();
|
||||||
else
|
else
|
||||||
|
if(1)
|
||||||
spool_holder_brackets_stl();
|
spool_holder_brackets_stl();
|
||||||
|
else
|
||||||
|
dust_filter_stl();
|
||||||
|
@@ -89,7 +89,6 @@ module wingnut(type) {
|
|||||||
[bottom_rad * cos(top_angle) - eta, 0],
|
[bottom_rad * cos(top_angle) - eta, 0],
|
||||||
[wing_span / 2 - wing_width / 2, wing_height - wing_width / 2],
|
[wing_span / 2 - wing_width / 2, wing_height - wing_width / 2],
|
||||||
[top_rad * cos(top_angle) - eta, thickness],
|
[top_rad * cos(top_angle) - eta, thickness],
|
||||||
[bottom_rad * cos(top_angle) - eta, 0],
|
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user