25 lines
413 B
C#
25 lines
413 B
C#
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace Sai.RvKits.RvView;
|
|||
|
|
|
|||
|
|
public enum UserDisplayStyle
|
|||
|
|
{
|
|||
|
|
[Description("线框")]
|
|||
|
|
Wireframe = 1,
|
|||
|
|
|
|||
|
|
[Description("隐藏线")]
|
|||
|
|
HLR = 2,
|
|||
|
|
|
|||
|
|
[Description("着色")]
|
|||
|
|
Shading = 3,
|
|||
|
|
|
|||
|
|
[Description("带边缘着色")]
|
|||
|
|
ShadingWithEdges = 4,
|
|||
|
|
|
|||
|
|
[Description("一致的颜色")]
|
|||
|
|
FlatColors = 7,
|
|||
|
|
|
|||
|
|
[Description("真实")]
|
|||
|
|
RealisticWithEdges = 8,
|
|||
|
|
}
|