defs.h
来自「Visual_C++.NET精彩案例237.rar」· C头文件 代码 · 共 30 行
H
30 行
#include <windows.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include <math.h>
HWND ghWnd;
HDC ghDC;
HGLRC ghRC;
GLint ell,axes;
int theta,beta;
GLfloat dist;
BOOL hitTest(void);
GLvoid drawScene(GLenum);
#define N 16
#define AXES 420
typedef struct _Vertex {
GLfloat v[3];
} Vertex;
int selected;
Vertex vertices[N];
#define MMOUSE_ENABLED 1
void bezInit(void);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?