3dPageHSpline.h
上传用户:shxiangxiu
上传日期:2007-01-03
资源大小:1101k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // 3dPageHSpline.h : Header file; Defines the class definitions
  3. //
  4. // glOOP (OpenGL Object Oriented Programming library)
  5. // Copyright (c) Craig Fahrnbach 1997, 1998
  6. //
  7. // OpenGL is a registered trademark of Silicon Graphics
  8. //
  9. //
  10. // HSplines by Joe Dart, 1999
  11. //
  12. // ???? this ok?  ** Modify as necessary **
  13. //
  14. // This program is provided for educational and personal use only and
  15. // is provided without guarantee or warrantee expressed or implied.
  16. //
  17. // Commercial use is strickly prohibited without written permission
  18. // from ImageWare Development.
  19. //
  20. // This program is -not- in the public domain.
  21. //
  22. /////////////////////////////////////////////////////////////////////////////
  23. /////////////////////////////////////////////////////////////////////////////
  24. // C3dPageHSpline dialog
  25. class AFX_EXT_CLASS C3dPageHSpline : public CPropertyPage
  26. {
  27. DECLARE_DYNCREATE(C3dPageHSpline);
  28. // Construction
  29. public:
  30. C3dPageHSpline();
  31. virtual ~C3dPageHSpline();
  32. // Attributes
  33. public:
  34. C3dObjectHSpline* m_pObject;
  35. // Dialog Data
  36. //{{AFX_DATA(C3dPageHSpline)
  37. enum { IDD = IDD_PAGE_OBJECT_HSPLINE };
  38. CString m_szName;
  39. //}}AFX_DATA
  40. // Overrides
  41. // ClassWizard generate virtual function overrides
  42. //{{AFX_VIRTUAL(C3dPageHSpline)
  43. public:
  44. virtual void OnOK();
  45. protected:
  46. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. protected:
  50. // Generated message map functions
  51. //{{AFX_MSG(C3dPageHSpline)
  52. virtual BOOL OnInitDialog();
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. /////////////////////////////////////////////////////////////////////////////