You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
505 B
C#
21 lines
505 B
C#
using System.Collections.Generic;
|
|
|
|
namespace GeoSigma.SigmaDrawerStyle.Converter
|
|
{
|
|
/// <summary>
|
|
/// 线端
|
|
/// </summary>
|
|
public class CurveCapConverter : EnumConverter<CurveCap>
|
|
{
|
|
/// <inheritdoc/>
|
|
protected override Dictionary<CurveCap, string> CreateMaps()
|
|
{
|
|
return new Dictionary<CurveCap, string>()
|
|
{
|
|
{ CurveCap.Round, "圆头" },
|
|
{ CurveCap.Square, "方头" },
|
|
};
|
|
}
|
|
}
|
|
}
|