using System;
using System.Collections.Generic;
namespace GeoSigma.SigmaDrawerStyle.Converter
{
///
/// 平滑
///
public class CurveSmoothnessConverter : EnumConverter
{
///
protected override Dictionary CreateMaps()
{
return new Dictionary()
{
{ CurveSmoothness.None, "无" },
{ CurveSmoothness.Bezier, "B样条" },
{ CurveSmoothness.Spline, "三次样条" },
};
}
}
}