OrganizingScan.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:1k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. //////////////////////////////////////////////////////////////////////
  2. //
  3. // OrganizingScan.h
  4. //
  5. // Matt Ginzton
  6. // Tue May 30 16:41:09 PDT 2000
  7. //
  8. // Dummy scan/helper class for DisplayableOrganizingMesh
  9. // 
  10. //////////////////////////////////////////////////////////////////////
  11. #ifndef _ORGANIZING_SCAN_H_
  12. #define _ORGANIZING_SCAN_H_
  13. #include "RigidScan.h"
  14. class OrganizingScan: public RigidScan
  15. {
  16.  public:
  17.   OrganizingScan();
  18.   virtual MeshTransport* mesh(bool         perVertex = true,
  19.       bool         stripped  = true,
  20.       ColorSource  color = colorNone,
  21.       int          colorSize = 3);
  22.   virtual void computeBBox (void);
  23.   virtual crope getInfo(void);
  24. };
  25. #endif // _ORGANIZING_SCAN_H_