diff --git a/OpenNest.Core/CNC/CuttingStrategy/LeadOuts/ArcLeadOut.cs b/OpenNest.Core/CNC/CuttingStrategy/LeadOuts/ArcLeadOut.cs index ed47977..927876c 100644 --- a/OpenNest.Core/CNC/CuttingStrategy/LeadOuts/ArcLeadOut.cs +++ b/OpenNest.Core/CNC/CuttingStrategy/LeadOuts/ArcLeadOut.cs @@ -20,7 +20,7 @@ namespace OpenNest.CNC.CuttingStrategy return new List { - new ArcMove(endPoint, arcCenter, winding) + new ArcMove(endPoint, arcCenter, winding) { Layer = LayerType.Leadout } }; } } diff --git a/OpenNest.Core/CNC/CuttingStrategy/LeadOuts/LineLeadOut.cs b/OpenNest.Core/CNC/CuttingStrategy/LeadOuts/LineLeadOut.cs index 954858a..986d68f 100644 --- a/OpenNest.Core/CNC/CuttingStrategy/LeadOuts/LineLeadOut.cs +++ b/OpenNest.Core/CNC/CuttingStrategy/LeadOuts/LineLeadOut.cs @@ -19,7 +19,7 @@ namespace OpenNest.CNC.CuttingStrategy return new List { - new LinearMove(endPoint) + new LinearMove(endPoint) { Layer = LayerType.Leadout } }; } }