The previous default of 0.125 was too large for typical use, causing cut-off lines to be pushed unnecessarily far from parts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
406 B
C#
17 lines
406 B
C#
namespace OpenNest
|
|
{
|
|
public enum CutDirection
|
|
{
|
|
TowardOrigin,
|
|
AwayFromOrigin
|
|
}
|
|
|
|
public class CutOffSettings
|
|
{
|
|
public double PartClearance { get; set; } = 0.02;
|
|
public double Overtravel { get; set; }
|
|
public double MinSegmentLength { get; set; } = 0.05;
|
|
public CutDirection CutDirection { get; set; } = CutDirection.AwayFromOrigin;
|
|
}
|
|
}
|