Files
OpenNest/OpenNest.Engine/StripNestResult.cs
2026-03-16 12:54:19 -04:00

14 lines
326 B
C#

using System.Collections.Generic;
using OpenNest.Geometry;
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; }
}
}