VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkOpenGLCamera.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00022 #ifndef __vtkOpenGLCamera_h 00023 #define __vtkOpenGLCamera_h 00024 00025 #include "vtkRenderingOpenGLModule.h" // For export macro 00026 #include "vtkCamera.h" 00027 00028 class vtkOpenGLRenderer; 00029 00030 class VTKRENDERINGOPENGL_EXPORT vtkOpenGLCamera : public vtkCamera 00031 { 00032 public: 00033 static vtkOpenGLCamera *New(); 00034 vtkTypeMacro(vtkOpenGLCamera, vtkCamera); 00035 virtual void PrintSelf(ostream& os, vtkIndent indent); 00036 00038 void Render(vtkRenderer *ren); 00039 00040 void UpdateViewport(vtkRenderer *ren); 00041 00042 protected: 00043 vtkOpenGLCamera() {} 00044 ~vtkOpenGLCamera() {} 00045 private: 00046 vtkOpenGLCamera(const vtkOpenGLCamera&); // Not implemented. 00047 void operator=(const vtkOpenGLCamera&); // Not implemented. 00048 }; 00049 00050 #endif