pcut_uwp/PCUT/DeepNestLib.Core/SheetPlacement.cs

19 lines
348 B
C#
Raw Normal View History

2024-08-21 16:02:56 +00:00
using System.Collections.Generic;
namespace DeepNestLib
{
public class SheetPlacement
{
public double? fitness;
public float[] Rotation;
public List<SheetPlacementItem>[] placements;
public NFP[] paths;
public double area;
public double mergedLength;
public int index;
}
}