11 lines
218 B
C#
11 lines
218 B
C#
namespace MultiWheelC.TrajectoryPlanning.PathSmoothing;
|
|
|
|
/// <summary>平滑路径点的来源。</summary>
|
|
public enum SmoothedPathPointSource
|
|
{
|
|
Anchor,
|
|
Interpolated,
|
|
GearSwitch,
|
|
CoarsePathFallback,
|
|
}
|