line.h
来自「计算机图形学~想必是很多人需要的~在此共享一下」· C头文件 代码 · 共 20 行
H
20 行
//Line.h#ifndef LINE_H#define LINE_H#include "Geometry.h"class Line: public Geometry{ public: Line(){}; void SetVertices(float *, float *); void SetVerticesv(float v[][3]); void Render(); private: float Vertices[2][3];};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?