mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-17 10:15:56 +08:00
Fix wrong inequality sign in surface.bridge_angle check
This commit is contained in:
parent
bfb60875fa
commit
be73967ac0
@ -1322,7 +1322,7 @@ namespace SupportMaterialInternal {
|
|||||||
// remove the entire bridges and only support the unsupported edges
|
// remove the entire bridges and only support the unsupported edges
|
||||||
//FIXME the brided regions are already collected as layerm.bridged. Use it?
|
//FIXME the brided regions are already collected as layerm.bridged. Use it?
|
||||||
for (const Surface &surface : layerm.fill_surfaces())
|
for (const Surface &surface : layerm.fill_surfaces())
|
||||||
if (surface.surface_type == stBottomBridge && surface.bridge_angle < 0.0)
|
if (surface.surface_type == stBottomBridge && surface.bridge_angle >= 0.0)
|
||||||
polygons_append(bridges, surface.expolygon);
|
polygons_append(bridges, surface.expolygon);
|
||||||
//FIXME add the gap filled areas. Extrude the gaps with a bridge flow?
|
//FIXME add the gap filled areas. Extrude the gaps with a bridge flow?
|
||||||
// Remove the unsupported ends of the bridges from the bridged areas.
|
// Remove the unsupported ends of the bridges from the bridged areas.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user