Files
OpenNest/OpenNest.Engine/NestProgress.cs
2026-03-13 10:21:26 -04:00

24 lines
511 B
C#

using System.Collections.Generic;
namespace OpenNest
{
public enum NestPhase
{
Linear,
RectBestFit,
Pairs,
Nfp,
Remainder
}
public class NestProgress
{
public NestPhase Phase { get; set; }
public int PlateNumber { get; set; }
public int BestPartCount { get; set; }
public double BestDensity { get; set; }
public double UsableRemnantArea { get; set; }
public List<Part> BestParts { get; set; }
}
}