feat: add IRapidPlanner, RapidPath, and SafeHeightRapidPlanner

This commit is contained in:
2026-03-16 00:39:34 -04:00
parent c1e21abd45
commit 29b2572f9a
4 changed files with 77 additions and 0 deletions
@@ -0,0 +1,17 @@
using System.Collections.Generic;
using OpenNest.Geometry;
namespace OpenNest.Engine.RapidPlanning
{
public class SafeHeightRapidPlanner : IRapidPlanner
{
public RapidPath Plan(Vector from, Vector to, IReadOnlyList<Shape> cutAreas)
{
return new RapidPath
{
HeadUp = true,
Waypoints = new List<Vector>()
};
}
}
}