📄 structs.h
字号:
#ifndef _structs_h_#define _structs_h_typedef struct { QString name; QColor viewColor; float eps; float sigma;} material_t;typedef struct { int x0; int y0; int z0; int x1; int y1; int z1; int material_indx;} box_t;typedef struct { QString name; QString type; QValueList<box_t> boxes;} object_t;typedef struct { QString name; int x0; int y0; int z0; int x1; int y1; int z1; int skip;} xmt_t;typedef struct { QString name; int x0; int y0; int z0; int x1; int y1; int z1; int component; int skip; } rcv_t;typedef struct color { float R,G,B;} my_color_t;#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -