Lighting.h
上传用户:azhong891
上传日期:2013-06-04
资源大小:197k
文件大小:2k
源码类别:

GIS编程

开发平台:

Visual C++

  1. #if !defined(AFX_LIGHTING_H__15DBA5E5_3488_11D4_B502_DA5D708BD658__INCLUDED_)
  2. #define AFX_LIGHTING_H__15DBA5E5_3488_11D4_B502_DA5D708BD658__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // Lighting.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CLighting dialog
  10. class CLighting : public CDialog
  11. {
  12. // Construction
  13. public:
  14. float m_lightAmbientR;
  15. float m_lightAmbientG;
  16. float m_lightAmbientB;
  17. float m_lightDiffuseR;
  18. float m_lightDiffuseG;
  19. float m_lightDiffuseB;
  20. float m_lightSpecularR;
  21. float m_lightSpecularG;
  22. float m_lightSpecularB;
  23.     float m_lightPositionX;
  24. float m_lightPositionY;
  25. float m_lightPositionZ;
  26. CLighting(CWnd* pParent = NULL);   // standard constructor
  27. // Dialog Data
  28. //{{AFX_DATA(CLighting)
  29. enum { IDD = IDD_LIGHT };
  30. // NOTE: the ClassWizard will add data members here
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CLighting)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CLighting)
  42. // NOTE: the ClassWizard will add member functions here
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_LIGHTING_H__15DBA5E5_3488_11D4_B502_DA5D708BD658__INCLUDED_)