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

GIS编程

开发平台:

Visual C++

  1. // Lighting.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Delaunay.h"
  5. #include "Lighting.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CLighting dialog
  13. CLighting::CLighting(CWnd* pParent /*=NULL*/)
  14. : CDialog(CLighting::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CLighting)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void CLighting::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. DDX_Text(pDX, IDC_L_AMBIENT_R, m_lightAmbientR);
  24.     DDX_Text(pDX, IDC_L_AMBIENT_G, m_lightAmbientG);
  25. DDX_Text(pDX, IDC_L_AMBIENT_B, m_lightAmbientB);
  26. DDX_Text(pDX, IDC_L_SPECULAR_R, m_lightSpecularR);
  27.     DDX_Text(pDX, IDC_L_SPECULAR_G, m_lightSpecularG);
  28. DDX_Text(pDX, IDC_L_SPECULAR_B, m_lightSpecularB);
  29. DDX_Text(pDX, IDC_L_DIFFUSE_R, m_lightDiffuseR);
  30.     DDX_Text(pDX, IDC_L_DIFFUSE_G, m_lightDiffuseG);
  31. DDX_Text(pDX, IDC_L_DIFFUSE_B, m_lightDiffuseB);
  32. DDX_Text(pDX, IDC_L_POSITION_X, m_lightPositionX);
  33.     DDX_Text(pDX, IDC_L_POSITION_Y, m_lightPositionY);
  34. DDX_Text(pDX, IDC_L_POSITION_Z, m_lightPositionZ);
  35. }
  36. BEGIN_MESSAGE_MAP(CLighting, CDialog)
  37. //{{AFX_MSG_MAP(CLighting)
  38. // NOTE: the ClassWizard will add message map macros here
  39. //}}AFX_MSG_MAP
  40. END_MESSAGE_MAP()
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CLighting message handlers