14 lines
326 B
C#
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; }
|
|
}
|
|
}
|