3DTeapot.h
上传用户:eehhbb
上传日期:2022-08-03
资源大小:2550k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // 3DTeapot.h: interface for the C3DTeapot class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_3DTEAPOT_H__83EA9195_B771_4D3B_9564_19CC406A432C__INCLUDED_)
  5. #define AFX_3DTEAPOT_H__83EA9195_B771_4D3B_9564_19CC406A432C__INCLUDED_
  6. #include "Vector3.h" // Added by ClassView
  7. #include "Material.h" // Added by ClassView
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. class C3DTeapot  
  12. {
  13. public:
  14. void RenderWireTeapot();
  15. void RenderLightSolidTeapot();
  16. CMaterial m_matTeapot;
  17. void DrawWireTeapot();
  18. CVector3 m_position;
  19. float m_fRoundRadius;
  20. C3DTeapot();
  21. virtual ~C3DTeapot();
  22. };
  23. #endif // !defined(AFX_3DTEAPOT_H__83EA9195_B771_4D3B_9564_19CC406A432C__INCLUDED_)