dox/Rendering/vtkOpenGLCamera.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 __vtkOpenGLCamera_h
00027
#define __vtkOpenGLCamera_h
00028
00029
#include "vtkCamera.h"
00030
00031
class vtkOpenGLRenderer;
00032
00033 class VTK_RENDERING_EXPORT vtkOpenGLCamera :
public vtkCamera
00034 {
00035
public:
00036
static vtkOpenGLCamera *
New();
00037 vtkTypeRevisionMacro(vtkOpenGLCamera,
vtkCamera);
00038
virtual void PrintSelf(ostream& os,
vtkIndent indent);
00039
00041
void Render(
vtkRenderer *ren);
00042
00043
void UpdateViewport(
vtkRenderer *ren);
00044
00045
protected:
00046 vtkOpenGLCamera() {};
00047 ~vtkOpenGLCamera() {};
00048
private:
00049 vtkOpenGLCamera(
const vtkOpenGLCamera&);
00050
void operator=(
const vtkOpenGLCamera&);
00051 };
00052
00053
#endif