structs.h

来自「The purpose of this program is to enable」· C头文件 代码 · 共 55 行

H
55
字号
#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 + =
减小字号Ctrl + -
显示快捷键?