12 lines
238 B
C#
12 lines
238 B
C#
using OpenNest.CNC;
|
|
using OpenNest.Geometry;
|
|
|
|
namespace OpenNest.CNC.CuttingStrategy
|
|
{
|
|
public readonly struct CuttingResult
|
|
{
|
|
public Program Program { get; init; }
|
|
public Vector LastCutPoint { get; init; }
|
|
}
|
|
}
|