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