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

3D图形编程

开发平台:

Visual C++

  1. // ProxyScan.h                 placeholder for unloaded scans
  2. // created 3/12/99             Matt Ginzton (magi@cs)
  3. #ifndef _PROXYSCAN_H_
  4. #define _PROXYSCAN_H_
  5. #include "RigidScan.h"
  6. class ProxyScan: public RigidScan
  7. {
  8.  public:
  9.   // ProxyScan manipulation
  10.   ProxyScan (const crope& proxyForFileName,
  11.      const Pnt3& min, const Pnt3& max);
  12.   ~ProxyScan();
  13.  public:
  14.   // RigidScan methods:
  15.   // Display
  16.   virtual MeshTransport* mesh(bool         perVertex = true,
  17.       bool         stripped  = true,
  18.       ColorSource  color = colorNone,
  19.       int          colorSize = 3);
  20.   virtual crope getInfo(void);
  21.   virtual unsigned long byteSize() { return sizeof(ProxyScan); }
  22. };
  23. #endif // _PROXYSCAN_H_