You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/src/Common/SystemEnum.ts

27 lines
358 B

export enum AAType
{
FXAA = 0,//快速近似抗锯齿(性能更好)
SMAA = 1,//多重采样抗锯齿(质量更好)
}
export enum ViewDirType
{
FS = 0,
YAS = 1,
ZS = 2,
YS = 3,
QS = 4,
HS = 5,
XN = 6,
}
export enum FractionDigitsType
{
zero = 0,
one = 1,
two = 2,
three = 3,
four = 4,
five = 5,
}