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
00022
#ifndef __vtkOpenGLActor_h
00023
#define __vtkOpenGLActor_h
00024
00025
#include "vtkActor.h"
00026
00027
class vtkOpenGLRenderer;
00028
00029 class VTK_RENDERING_EXPORT vtkOpenGLActor :
public vtkActor
00030 {
00031
protected:
00032
00033
public:
00034
static vtkOpenGLActor *
New();
00035 vtkTypeRevisionMacro(vtkOpenGLActor,
vtkActor);
00036
virtual void PrintSelf(ostream& os,
vtkIndent indent);
00037
00039
void Render(
vtkRenderer *ren,
vtkMapper *mapper);
00040
00041
protected:
00042 vtkOpenGLActor() {};
00043 ~vtkOpenGLActor() {};
00044
00045
private:
00046 vtkOpenGLActor(
const vtkOpenGLActor&);
00047
void operator=(
const vtkOpenGLActor&);
00048 };
00049
00050
#endif
00051