using OpenNest.Geometry; using System.Collections.Generic; namespace OpenNest.CNC.CuttingStrategy { public class NoLeadOut : LeadOut { public override List Generate(Vector contourEndPoint, double contourNormalAngle, RotationType winding = RotationType.CW) { return new List(); } } }