cylinder.h

来自「C arm 3D traslate 模擬C手臂在三度空間移動」· C头文件 代码 · 共 25 行

H
25
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?