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

GIS编程

开发平台:

Visual C++

  1. // DelaunayView.h : interface of the CDelaunayView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DELAUNAYVIEW_H__8BFDEC2F_B5F7_11D3_AB59_080039014899__INCLUDED_)
  5. #define AFX_DELAUNAYVIEW_H__8BFDEC2F_B5F7_11D3_AB59_080039014899__INCLUDED_
  6. #include<glgl.h>
  7. #include<glglu.h>
  8. #include<glglaux.h>
  9. #include "Triangle.h" // Added by ClassView
  10. #include "LightMaterial.h"
  11. #include "Lighting.h"
  12. typedef struct
  13. {
  14. int a;
  15. int b;
  16. int c;
  17. } array;
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21. class CDelaunayView : public CView
  22. {
  23. protected: // create from serialization only
  24. CDelaunayView();
  25. DECLARE_DYNCREATE(CDelaunayView)
  26. // Attributes
  27. public:
  28. CDelaunayDoc* GetDocument();
  29. // Operations
  30. public:
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CDelaunayView)
  34. public:
  35. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  36. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  37. protected:
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. ////////////////////////////////////////////
  41. public:
  42. double b[4][4][4];
  43. double Bezier(POI p);
  44. double Power(double a,int e);
  45. int Factorial(int n);
  46. double S(POI p1,POI p2,POI p3);
  47. POI GetTriNormal(POI p1,POI p2,POI p3);
  48. POI PointOnEdge_3(double x1, double y1, double x2, double y2);
  49. POI BaryCenter(double x1, double y1,double z1,double x2, double y2,double z2,double x3, double y3,double z3);
  50. void HCT(CTriangle* temp,int p);
  51. void CreateMaterial();
  52. void CreateLights();
  53. void DrawPoints();
  54. void DrawTris();
  55. void DrawPoint(int i);
  56. BOOL bSetupPixelFormat();
  57. void InitOpenGl();
  58. void DrawScene(void);
  59. int DelTriList(double x,double y,int p);
  60. void DrawTri(CTriangle *tri);
  61. array Wher(CPointPos *pos);
  62. int m_len;int m_oy;int m_ox;//坐标变换用
  63. int m_Dimension;//画2维或3维
  64. int m_HCT;//是否细分
  65. POI m_hct[10];
  66. int m_Draw_what;//画Line or Fill or Wang
  67. //OpenGl/////////////////////////////////////
  68. //HGLRC hglrc;
  69. CClientDC *m_pDC;
  70. CRect m_oldRect;
  71. double m_translate_x;double m_translate_y;double m_translate_z;
  72. double m_rotate_angle;
  73. double m_gl_x;POI eye;
  74. double m_gl_y;
  75. double m_gl_z;
  76. float m_colorRed;
  77. float m_colorGreen;
  78. float m_colorBlue;
  79.     BOOL m_bMaskRed;
  80. BOOL m_bMaskGreen;
  81. BOOL m_bMaskBlue;
  82.     GLfloat m_materialAmb[4];
  83. GLfloat m_materialDif[4];
  84. GLfloat m_materialSpe[4];
  85.     GLfloat m_materialEmi[4];
  86. GLfloat m_matshininess;
  87. BOOL m_bMaterial;
  88. GLfloat m_lightAmb[4];
  89. GLfloat m_lightDif[4];
  90. GLfloat m_lightSpe[4];
  91. GLfloat m_lightPos[4];
  92. //OpenGl/////////////////////////////////////
  93. CDelaunayDoc* m_pDoc;
  94. //CMainFrame* m_MainFrame;
  95. ////////////////////////////////////////////
  96. virtual ~CDelaunayView();
  97. #ifdef _DEBUG
  98. virtual void AssertValid() const;
  99. virtual void Dump(CDumpContext& dc) const;
  100. #endif
  101. protected:
  102. // Generated message map functions
  103. protected:
  104. //{{AFX_MSG(CDelaunayView)
  105. afx_msg void OnSize(UINT nType, int cx, int cy);
  106. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  107. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  108. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  109. afx_msg void OnDestroy();
  110. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  111. afx_msg void OnCorlorMaterial();
  112. afx_msg void OnUpdateCorlorMaterial(CCmdUI* pCmdUI);
  113. afx_msg void OnUpdateLight(CCmdUI* pCmdUI);
  114. afx_msg void OnLight();
  115. afx_msg void OnButtonTwo();
  116. afx_msg void OnUpdateButtonTwo(CCmdUI* pCmdUI);
  117. afx_msg void OnButtonThree();
  118. afx_msg void OnUpdateButtonThree(CCmdUI* pCmdUI);
  119. afx_msg void OnButtonHct();
  120. afx_msg void OnUpdateButtonHct(CCmdUI* pCmdUI);
  121. afx_msg void OnButtonFill();
  122. afx_msg void OnUpdateButtonFill(CCmdUI* pCmdUI);
  123. afx_msg void OnButtonLine();
  124. afx_msg void OnUpdateButtonLine(CCmdUI* pCmdUI);
  125. afx_msg void OnButtonWnag();
  126. //}}AFX_MSG
  127. DECLARE_MESSAGE_MAP()
  128. };
  129. #ifndef _DEBUG  // debug version in DelaunayView.cpp
  130. inline CDelaunayDoc* CDelaunayView::GetDocument()
  131.    { return (CDelaunayDoc*)m_pDocument; }
  132. #endif
  133. /////////////////////////////////////////////////////////////////////////////
  134. //{{AFX_INSERT_LOCATION}}
  135. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  136. #endif // !defined(AFX_DELAUNAYVIEW_H__8BFDEC2F_B5F7_11D3_AB59_080039014899__INCLUDED_)