19 lines
348 B
C#
19 lines
348 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
|