Camera.h
上传用户:hkb425
上传日期:2007-06-16
资源大小:34191k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // Camera.h: interface for the CCamera class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CAMERA_H__B93A3521_3F0E_11D6_812C_5254AB37CDC9__INCLUDED_)
  5. #define AFX_CAMERA_H__B93A3521_3F0E_11D6_812C_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "StructDef.h"
  10. #include "cmath.h"
  11. class CCamera  
  12. {
  13. public:
  14. CCamera();
  15. virtual ~CCamera();
  16. void   SetCamera(VERTEX position,float rotY);
  17. void   SetCamera(VERTEX newFoucs);
  18. void   SetCameraRotate(float Y_angle);
  19. void   SetCameraPosition(VERTEX pos);
  20. bool   IsEnemyInFrustum(VERTEX enemyPos);
  21. float  GetDistance(VERTEX pos);
  22.     VERTEX  m_CamPos;
  23. float m_CamRotY;
  24. private:
  25.     /////////////////////////////////////
  26. NORMAL  m_CamDirection;
  27.     ////////////////////////
  28. CMath math;
  29. };
  30. #endif // !defined(AFX_CAMERA_H__B93A3521_3F0E_11D6_812C_5254AB37CDC9__INCLUDED_)