📄 globefile.h
字号:
//GlobeFile.h 包含有全局用到的结构体变量
#ifndef GLOBLE_FILE_H
#define GLOBLE_FILE_H
typedef struct //图层结构体
{
char LayerName[21];
bool IsDisplay;
}LayerStruct;
typedef struct //坐标结构体
{
float x; //x坐标
float y; //y坐标
float z; //z坐标,备用,可能为高程等信息
}PointStruct;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -