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.
24 lines
745 B
C#
24 lines
745 B
C#
using GeoSigma.SigmaDrawerStyle.Converter;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SigmaDrawerElement.Converter
|
|
{
|
|
public class MeshRulerIdeaConverter : EnumConverter<MeshRulerIdea>
|
|
{
|
|
protected override Dictionary<MeshRulerIdea, string> CreateMaps()
|
|
{
|
|
return new Dictionary<MeshRulerIdea, string>
|
|
{
|
|
{MeshRulerIdea.COLOR_RULER_V_SMOOTH, "垂直平滑"},
|
|
{MeshRulerIdea.COLOR_RULER_V_GRID, "垂直方格"},
|
|
{MeshRulerIdea.COLOR_RULER_H_SMOOTH, "水平平滑"},
|
|
{MeshRulerIdea.COLOR_RULER_H_GRID, "水平方格"},
|
|
};
|
|
}
|
|
}
|
|
}
|