pcut_uwp/PCUT/DeepNestLib.Core/PlacementItem.cs

21 lines
422 B
C#

using System.Collections.Generic;
namespace DeepNestLib
{
public class PlacementItem
{
public double? mergedLength;
public object mergedSegments;
public List<List<ClipperLib.IntPoint>> nfp;
public int id;
public NFP hull;
public NFP hullsheet;
public float rotation;
public double x;
public double y;
public int source;
}
}