www.pudn.com > SurfWareNew06.3.5(LYW).rar > Cone.h


// Cone.h: interface for the CCone class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_CONE_H__80E556D9_6DF4_4692_84D4_72029091D814__INCLUDED_) 
#define AFX_CONE_H__80E556D9_6DF4_4692_84D4_72029091D814__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
#include "Model.h" 
 
class CCone : public CModel   
{ 
	SEOBJECT_DECLARE( CCone ) 
// attrib 
public: 
	float	_radius; 
	float	_height; 
	int		_slices; 
	int		_stacks; 
	 
public: 
	CCone(); 
	CCone(float radius,float height,int slices,int stacks,PlHPoint3Df center,COLORREF color); 
	virtual ~CCone(); 
 
}; 
 
#endif // !defined(AFX_CONE_H__80E556D9_6DF4_4692_84D4_72029091D814__INCLUDED_)