refactor(engine): delete obsolete StripNestResult and StripDirection

Both types were only used internally by the old StripNestEngine.Nest
strip-orientation logic, which has been replaced by IterativeShrinkFiller.
No references remain outside of these files.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-19 10:38:12 -04:00
parent 8957b20bac
commit 116a386152
2 changed files with 0 additions and 22 deletions

View File

@@ -1,8 +0,0 @@
namespace OpenNest
{
public enum StripDirection
{
Bottom,
Left
}
}

View File

@@ -1,14 +0,0 @@
using OpenNest.Engine.Fill;
using OpenNest.Geometry;
using System.Collections.Generic;
namespace OpenNest
{
internal class StripNestResult
{
public List<Part> Parts { get; set; } = new();
public Box StripBox { get; set; }
public FillScore Score { get; set; }
public StripDirection Direction { get; set; }
}
}