9 lines
243 B
C#
9 lines
243 B
C#
namespace RobotNet.RobotManager.Services.Planner;
|
|
|
|
public class PathPlanningOptions
|
|
{
|
|
public double LimitDistanceToEdge { get; set; }
|
|
public double LimitDistanceToNode { get; set; }
|
|
public double ResolutionSplit { get; set; }
|
|
}
|