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

OpenGL

开发平台:

Visual C++

  1. // 3DBox.h: interface for the C3DBox class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_3DBOX_H__3B8D7EFD_343B_4F35_8684_26C210594F01__INCLUDED_)
  5. #define AFX_3DBOX_H__3B8D7EFD_343B_4F35_8684_26C210594F01__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 C3DBox  
  12. {
  13. public:
  14. void RenderLightSolid3dBox();
  15. void Draw3dBox();
  16. CMaterial m_matBox;
  17. CVector3 m_vBox[2];
  18. CVector3 m_position;
  19. C3DBox();
  20. virtual ~C3DBox();
  21. };
  22. #endif // !defined(AFX_3DBOX_H__3B8D7EFD_343B_4F35_8684_26C210594F01__INCLUDED_)