using System.Collections.Generic;
namespace GeoSigma.SigmaDrawerStyle.Converter
{
///
/// 线端
///
public class CurveCapConverter : EnumConverter
{
///
protected override Dictionary CreateMaps()
{
return new Dictionary()
{
{ CurveCap.Round, "圆头" },
{ CurveCap.Square, "方头" },
};
}
}
}