• Main Page
  • Related Pages
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

dox/Rendering/vtkCameraPass.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkCameraPass.h,v $
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 =========================================================================*/
00034 #ifndef __vtkCameraPass_h
00035 #define __vtkCameraPass_h
00036 
00037 #include "vtkRenderPass.h"
00038 
00039 class VTK_RENDERING_EXPORT vtkCameraPass : public vtkRenderPass
00040 {
00041 public:
00042   static vtkCameraPass *New();
00043   vtkTypeRevisionMacro(vtkCameraPass,vtkRenderPass);
00044   void PrintSelf(ostream& os, vtkIndent indent);
00045 
00048   virtual void Render(const vtkRenderState *s);
00049   
00052   void ReleaseGraphicsResources(vtkWindow *w);
00053   
00055 
00059   vtkGetObjectMacro(DelegatePass,vtkRenderPass);
00060   virtual void SetDelegatePass(vtkRenderPass *delegatePass);
00062   
00063  protected:
00065   vtkCameraPass();
00066 
00068   virtual ~vtkCameraPass();
00069   
00070   vtkRenderPass *DelegatePass;
00071   
00072  private:
00073   vtkCameraPass(const vtkCameraPass&);  // Not implemented.
00074   void operator=(const vtkCameraPass&);  // Not implemented.
00075 };
00076 
00077 #endif

Generated by  doxygen 1.7.1