feat(engine): add NestPhase.Custom for plugin fill strategies

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-18 12:57:23 -04:00
parent e6a7d9b047
commit 4348e5c427
2 changed files with 3 additions and 1 deletions

View File

@@ -308,6 +308,7 @@ namespace OpenNest
case NestPhase.Linear: return "Linear";
case NestPhase.RectBestFit: return "BestFit";
case NestPhase.Extents: return "Extents";
case NestPhase.Custom: return "Custom";
default: return phase.ToString();
}
}