mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 03:07:55 -06:00
Multiple bug fixes in the new support generator to guarantee gap
between object and support.
This commit is contained in:
parent
a74aaca681
commit
22124e5f61
2 changed files with 329 additions and 202 deletions
|
@ -83,13 +83,16 @@ public:
|
|||
if (height > layer2.height)
|
||||
return true;
|
||||
else if (height == layer2.height) {
|
||||
return bridging < layer2.bridging;
|
||||
// Bridging layers first.
|
||||
return bridging && ! layer2.bridging;
|
||||
} else
|
||||
return false;
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
coordf_t bottom_print_z() const { return print_z - height; }
|
||||
|
||||
SupporLayerType layer_type;
|
||||
// Z used for printing, in unscaled coordinates.
|
||||
coordf_t print_z;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue