using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TeamAAS.Robot.Enums { /// /// 坐标系模式 /// public enum CoordinateModel { /// /// 直角正交 /// [Description("直角正交(Orthogonality)")] Orthogonality = 0, /// /// 切变 /// [Description("切变(Shear)")] Shear = 1, } }