diff --git a/OpenNest.Engine/StripNestEngine.cs b/OpenNest.Engine/StripNestEngine.cs index 87a6b4a..1838e13 100644 --- a/OpenNest.Engine/StripNestEngine.cs +++ b/OpenNest.Engine/StripNestEngine.cs @@ -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; diff --git a/OpenNest.Engine/StripNestResult.cs b/OpenNest.Engine/StripNestResult.cs index f849d8e..44181ca 100644 --- a/OpenNest.Engine/StripNestResult.cs +++ b/OpenNest.Engine/StripNestResult.cs @@ -7,7 +7,6 @@ namespace OpenNest { public List Parts { get; set; } = new(); public Box StripBox { get; set; } - public Box RemnantBox { get; set; } public FillScore Score { get; set; } public StripDirection Direction { get; set; } }