VTK
dox/Rendering/vtkMesaRepresentationPainter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkMesaRepresentationPainter.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 =========================================================================*/
00023 #ifndef __vtkMesaRepresentationPainter_h
00024 #define __vtkMesaRepresentationPainter_h
00025 
00026 #include "vtkRepresentationPainter.h"
00027 
00028 class VTK_RENDERING_EXPORT vtkMesaRepresentationPainter : 
00029   public vtkRepresentationPainter
00030 {
00031 public:
00032   static vtkMesaRepresentationPainter* New();
00033   vtkTypeMacro(vtkMesaRepresentationPainter, vtkRepresentationPainter);
00034   void PrintSelf(ostream& os, vtkIndent indent);
00035 
00036 protected:
00037   vtkMesaRepresentationPainter();
00038   ~vtkMesaRepresentationPainter();
00039 
00041 
00042   void RenderInternal(vtkRenderer* renderer, vtkActor* actor, 
00043     unsigned long typeflags);
00044 private:
00045   vtkMesaRepresentationPainter(const vtkMesaRepresentationPainter&); // Not implemented.
00046   void operator=(const vtkMesaRepresentationPainter&); // Not implemented.
00047 };
00049 
00050 #endif