refactor: remove StripNestResult.RemnantBox

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-16 12:54:19 -04:00
parent 9d99e3a003
commit 2bda7c9f0f
2 changed files with 0 additions and 2 deletions

View File

@@ -298,7 +298,6 @@ namespace OpenNest
result.StripBox = direction == StripDirection.Bottom
? new Box(workArea.X, workArea.Y, workArea.Width, bestDim)
: new Box(workArea.X, workArea.Y, bestDim, workArea.Length);
result.RemnantBox = remnantBox;
result.Score = FillScore.Compute(allParts, workArea);
return result;

View File

@@ -7,7 +7,6 @@ namespace OpenNest
{
public List<Part> Parts { get; set; } = new();
public Box StripBox { get; set; }
public Box RemnantBox { get; set; }
public FillScore Score { get; set; }
public StripDirection Direction { get; set; }
}