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

📄 cylinder.h

📁 C arm 3D traslate 模擬C手臂在三度空間移動
💻 H
字号:
// Cylinder.h: interface for the CCylinder class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CYLINDER_H__66028641_936D_4CE1_BBCF_B43F2B8C56A1__INCLUDED_)
#define AFX_CYLINDER_H__66028641_936D_4CE1_BBCF_B43F2B8C56A1__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Entity.h"
class CCylinder: public CEntity  
{
public:
	CCylinder();
	virtual ~CCylinder();
	virtual void Draw(CDC *pCDC,HGLRC hRC);
	float m_Height;	
	float m_Diameter;
	float m_BottonCenterPt[3];

};

#endif // !defined(AFX_CYLINDER_H__66028641_936D_4CE1_BBCF_B43F2B8C56A1__INCLUDED_)

⌨️ 快捷键说明

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