Files
ParkingRobot/.task8-sweep/ParkrobTrajplanner/PathSmoothing/Contracts/SmoothedPathPointSource.cs
T

12 lines
241 B
C#
Raw Normal View History

2026-08-09 22:13:18 +08:00
namespace MultiWheelC.TrajectoryPlanning.PathSmoothing;
/// <summary>平滑路径点的来源。</summary>
public enum SmoothedPathPointSource
{
Anchor,
Interpolated,
GearSwitch,
CoarsePathFallback,
LocalG2Transition,
}