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

12 lines
241 B
C#
Raw Normal View History

2026-07-28 16:48:24 +08:00
namespace MultiWheelC.TrajectoryPlanning.PathSmoothing;
/// <summary>平滑路径点的来源。</summary>
public enum SmoothedPathPointSource
{
Anchor,
Interpolated,
GearSwitch,
CoarsePathFallback,
2026-07-30 16:12:06 +08:00
LocalG2Transition,
2026-07-28 16:48:24 +08:00
}