10 lines
208 B
C#
10 lines
208 B
C#
namespace MultiWheelC.TrajectoryPlanning.PathSmoothing;
|
|
|
|
/// <summary>支持的粗路径平滑方法。</summary>
|
|
public enum SmoothingMethod
|
|
{
|
|
CubicBSpline,
|
|
LocalCubicBezier,
|
|
PiecewiseQuintic,
|
|
}
|