feat(engine): add IFillStrategy interface and FillContext

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

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
namespace OpenNest
{
public interface IFillStrategy
{
string Name { get; }
NestPhase Phase { get; }
int Order { get; }
List<Part> Fill(FillContext context);
}
}