namespace OpenNest
{
public class NestItem
{
///
/// The drawing to be nested.
///
public Drawing Drawing { get; set; }
///
/// Priority of the part determines nesting order. Highest priority will be nested first.
///
public int Priority { get; set; }
///
/// The number of parts to be nested.
///
public int Quantity { get; set; }
///
/// The rotation step in radians.
///
public double StepAngle { get; set; }
///
/// The rotation start angle in radians.
///
public double RotationStart { get; set; }
///
/// The rotation end angle in radians.
///
public double RotationEnd { get; set; }
}
}