origin.h
来自「This code was developed by my techer. :D」· C头文件 代码 · 共 20 行
H
20 行
#ifndef COMPGRAF_ORIGIN_H
#define COMPGRAF_ORIGIN_H
#include "interfaces/rendereable.h"
class Origin : public Rendereable
{
public:
Origin();
virtual ~Origin();
virtual void draw();
//void update( float deltaTime );
private:
int arrowDisplayListId;
static const float FAR_POINT;
static const float NEAR_POINT;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?