3dObjectHSpline.h
资源名称:gloop.zip [点击查看]
上传用户:shxiangxiu
上传日期:2007-01-03
资源大小:1101k
文件大小:2k
源码类别:
OpenGL
开发平台:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- // 3dObjectHSpline.h : Header file; Defines the class definitions
- //
- // glOOP (OpenGL Object Oriented Programming library)
- // Copyright (c) Craig Fahrnbach 1997, 1998
- //
- // OpenGL is a registered trademark of Silicon Graphics
- //
- //
- // HSplines by Joe Dart, 1999
- //
- // ???? this ok? ** Modify as necessary **
- //
- // This program is provided for educational and personal use only and
- // is provided without guarantee or warrantee expressed or implied.
- //
- // Commercial use is strickly prohibited without written permission
- // from ImageWare Development.
- //
- // This program is -not- in the public domain.
- //
- /////////////////////////////////////////////////////////////////////////////
- #include <glOOP.h>
- class C3dPageHSpline;
- ////////////////////////////////////////////////////////////////////
- // C3dObjectHSpline
- class AFX_EXT_CLASS C3dObjectHSpline : public C3dObject
- {
- DECLARE_DYNAMIC(C3dObjectHSpline);
- //Construction
- public:
- C3dObjectHSpline();
- virtual ~C3dObjectHSpline();
- //Implimentation
- public:
- virtual void AddAttributePage(C3dWorld* pWorld, LPVOID);
- virtual void GetShapeBounds(C3dBoundingBox* pBox);
- virtual int LoadBitMapImage(CImageList*);
- virtual void Serialize(CArchive& ar, int iVersion);
- virtual void Build(C3dWorld*, C3dCamera*);
- protected:
- // Add your protected member functions here
- //Attributes
- protected:
- // Add your protected member variables here
- public:
- // Add your public member variables here
- C3dPageLathe* m_pAttribPage;
- };
- /////////////////////////////////////////////////////////////////////////////