⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 plane.h

📁 刚上传内容的相关CODEC不能单独上传。于是
💻 H
字号:
// Plane.h: interface for the CPlane class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PLANE_H__DAF80D00_968D_48B2_BE3D_11F867128E7F__INCLUDED_)
#define AFX_PLANE_H__DAF80D00_968D_48B2_BE3D_11F867128E7F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "3DObject.h"

class CPlane : public C3DObject  
{
public:
	CPlane();
	CPlane(CPlane* pSrc);
	~CPlane();

	void Render(GLUquadricObj* pQuad, CImage* pImage, BOOL bGlobal = TRUE);
	BOOL Create(CEdgeList* pList, CRect rect, int height);
	BOOL  CopyParam(C3DObject* pObject);


	BOOL Write(CFile* pFile);
	BOOL Read(CFile* pFile);

protected:


};

#endif // !defined(AFX_PLANE_H__DAF80D00_968D_48B2_BE3D_11F867128E7F__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -