dox/Rendering/vtkOpenGLActor.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00026 #ifndef __vtkOpenGLActor_h
00027 #define __vtkOpenGLActor_h
00028
00029 #include "vtkActor.h"
00030
00031 class vtkOpenGLRenderer;
00032
00033 class VTK_RENDERING_EXPORT vtkOpenGLActor : public vtkActor
00034 {
00035 protected:
00036
00037 public:
00038 static vtkOpenGLActor *New();
00039 vtkTypeRevisionMacro(vtkOpenGLActor,vtkActor);
00040 virtual void PrintSelf(ostream& os, vtkIndent indent);
00041
00043 void Render(vtkRenderer *ren, vtkMapper *mapper);
00044
00045 protected:
00046 vtkOpenGLActor() {};
00047 ~vtkOpenGLActor() {};
00048
00049 private:
00050 vtkOpenGLActor(const vtkOpenGLActor&);
00051 void operator=(const vtkOpenGLActor&);
00052 };
00053
00054 #endif
00055