diff --git a/OpenNest.Engine/NestEngineBase.cs b/OpenNest.Engine/NestEngineBase.cs index 2bbeb88..d9e67f5 100644 --- a/OpenNest.Engine/NestEngineBase.cs +++ b/OpenNest.Engine/NestEngineBase.cs @@ -229,7 +229,6 @@ namespace OpenNest NestedWidth = bounds.Width, NestedLength = bounds.Length, NestedArea = totalPartArea, - UsableRemnantArea = workArea.Area() - totalPartArea, BestParts = clonedParts, Description = description }); diff --git a/OpenNest.Engine/NestProgress.cs b/OpenNest.Engine/NestProgress.cs index c7c4ead..5d1e295 100644 --- a/OpenNest.Engine/NestProgress.cs +++ b/OpenNest.Engine/NestProgress.cs @@ -41,7 +41,6 @@ namespace OpenNest public double NestedWidth { get; set; } public double NestedLength { get; set; } public double NestedArea { get; set; } - public double UsableRemnantArea { get; set; } public List BestParts { get; set; } public string Description { get; set; } } diff --git a/OpenNest/Forms/NestProgressForm.cs b/OpenNest/Forms/NestProgressForm.cs index 023e8fc..81f1934 100644 --- a/OpenNest/Forms/NestProgressForm.cs +++ b/OpenNest/Forms/NestProgressForm.cs @@ -37,7 +37,6 @@ namespace OpenNest.Forms partsValue.Text = progress.BestPartCount.ToString(); densityValue.Text = progress.BestDensity.ToString("P1"); nestedAreaValue.Text = $"{progress.NestedWidth:F1} x {progress.NestedLength:F1} ({progress.NestedArea:F1} sq in)"; - remnantValue.Text = $"{progress.UsableRemnantArea:F1} sq in"; if (!string.IsNullOrEmpty(progress.Description)) descriptionValue.Text = progress.Description;