using OpenNest.Geometry; using System.Collections.Generic; namespace OpenNest.Engine.RapidPlanning { public class SafeHeightRapidPlanner : IRapidPlanner { public RapidPath Plan(Vector from, Vector to, IReadOnlyList cutAreas) { return new RapidPath { HeadUp = true, Waypoints = new List() }; } } }