feat: add CuttingResult struct

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-16 00:22:50 -04:00
parent b49cdc3e55
commit ad877383ce
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using OpenNest.CNC;
using OpenNest.Geometry;
namespace OpenNest.CNC.CuttingStrategy
{
public readonly struct CuttingResult
{
public Program Program { get; init; }
public Vector LastCutPoint { get; init; }
}
}