Files
ParkingRobot/ClumsyPilot/ParkrobTrajplanner/PathSmoothing/Contracts/SmoothedPathPointSource.cs
T

12 lines
241 B
C#

namespace MultiWheelC.TrajectoryPlanning.PathSmoothing;
/// <summary>平滑路径点的来源。</summary>
public enum SmoothedPathPointSource
{
Anchor,
Interpolated,
GearSwitch,
CoarsePathFallback,
LocalG2Transition,
}