fix: reduce default cut-off part clearance from 0.125 to 0.02

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>
This commit is contained in:
2026-03-23 01:07:33 -04:00
parent 4801895321
commit 0246073b31

View File

@@ -8,7 +8,7 @@ namespace OpenNest
public class CutOffSettings
{
public double PartClearance { get; set; } = 0.125;
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;