VTK
dox/Rendering/Core/vtkTStripsPainter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkTStripsPainter.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 =========================================================================*/
00019 #ifndef __vtkTStripsPainter_h
00020 #define __vtkTStripsPainter_h
00021 
00022 #include "vtkRenderingCoreModule.h" // For export macro
00023 #include "vtkPrimitivePainter.h"
00024 
00025 class VTKRENDERINGCORE_EXPORT vtkTStripsPainter : public vtkPrimitivePainter
00026 {
00027 public:
00028   static vtkTStripsPainter* New();
00029   vtkTypeMacro(vtkTStripsPainter, vtkPrimitivePainter);
00030   void PrintSelf(ostream& os, vtkIndent indent);
00031 
00032 protected:
00033   vtkTStripsPainter();
00034   ~vtkTStripsPainter();
00035 
00037 
00039   virtual int RenderPrimitive(unsigned long flags, vtkDataArray* n,
00040     vtkUnsignedCharArray* c, vtkDataArray* t, vtkRenderer* ren);
00041 private:
00042   vtkTStripsPainter(const vtkTStripsPainter&); // Not implemented.
00043   void operator=(const vtkTStripsPainter&); // Not implemented.
00044 };
00046 
00047 
00048 
00049 #endif
00050