kochView.h
上传用户:wangyiwen
上传日期:2021-03-13
资源大小:287k
文件大小:2k
源码类别:

分形几何

开发平台:

Visual C++

  1. // kochView.h : interface of the CKochView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_KOCHVIEW_H__FCA17219_6A06_48C5_9910_E9AAAA4A7D7E__INCLUDED_)
  5. #define AFX_KOCHVIEW_H__FCA17219_6A06_48C5_9910_E9AAAA4A7D7E__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CPOINT
  10. {
  11. public:
  12. double x,y;
  13. CPOINT()
  14. {
  15. }
  16. ~CPOINT()
  17. {
  18. }
  19. };
  20. class CKochView : public CView
  21. {
  22. protected: // create from serialization only
  23. CKochView();
  24. DECLARE_DYNCREATE(CKochView)
  25. // Attributes
  26. public:
  27. CKochDoc* GetDocument();
  28. // Operations
  29. public:
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CKochView)
  33. public:
  34. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  35. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  36. protected:
  37. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  38. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  39. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. public:
  43. void ClearScreen();
  44. void koch(CPOINT p0, CPOINT p1, int iter);
  45. virtual ~CKochView();
  46. #ifdef _DEBUG
  47. virtual void AssertValid() const;
  48. virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50. protected:
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CKochView)
  54. afx_msg void OnKochCurve();
  55. afx_msg void OnKochSnow();
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. #ifndef _DEBUG  // debug version in kochView.cpp
  60. inline CKochDoc* CKochView::GetDocument()
  61.    { return (CKochDoc*)m_pDocument; }
  62. #endif
  63. /////////////////////////////////////////////////////////////////////////////
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  66. #endif // !defined(AFX_KOCHVIEW_H__FCA17219_6A06_48C5_9910_E9AAAA4A7D7E__INCLUDED_)