Feature: Small perimeters speed for supports (#13459)

This commit is contained in:
Valerii Bokhan
2026-07-03 22:27:57 +02:00
committed by GitHub
parent 65a9e655cf
commit 1882861a98
11 changed files with 92 additions and 28 deletions

View File

@@ -96,12 +96,21 @@ inline bool is_solid_infill(ExtrusionRole role)
|| role == erIroning;
}
inline bool is_bridge(ExtrusionRole role) {
inline bool is_bridge(ExtrusionRole role)
{
return role == erBridgeInfill
|| role == erInternalBridgeInfill
|| role == erOverhangPerimeter;
}
// Orca
inline bool is_support(ExtrusionRole role)
{
return role == erSupportMaterial
|| role == erSupportMaterialInterface
|| role == erSupportTransition;
}
class ExtrusionEntity
{
public: