webcad-api/types/GraphicsSystem/RenderType.d.ts

45 lines
885 B
TypeScript
Raw Normal View History

2020-09-24 11:04:12 +08:00
/**
* .
*/
export declare enum RenderType {
/**
* 线
*/
Wireframe = 1,
/**
*
*/
Conceptual = 2,
/**
* PBR
*/
Physical = 3,
Jig = 4,
Print = 5,
/**物理带线框 */
Physical2 = 6,
2021-02-22 14:13:27 +08:00
Edge = 7,
2023-05-08 10:53:13 +08:00
PlaceFace = 8,
CustomNumber = 9,
/******************************************** 在视口时的渲染模式 */
/**
* 线
*/
WireframePrint = 101,
/**
*
*/
ConceptualPrint = 102,
/**
* PBR
*/
PhysicalPrint = 103,
JigPrint = 104,
PrintPrint = 105,
2023-05-08 10:53:13 +08:00
/**真实带线框 */
Physical2Print = 106,
CustomNumberPrint = 109,
ConceptualTransparent = 182
2020-09-24 11:04:12 +08:00
}
2023-05-08 10:53:13 +08:00
export declare function IsPhysical(renderType: RenderType): boolean;
2020-09-24 11:04:12 +08:00
//# sourceMappingURL=RenderType.d.ts.map