VTK
dox/Rendering/vtkCompositePolyDataMapper2.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkCompositePolyDataMapper2.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 =========================================================================*/
00024 #ifndef __vtkCompositePolyDataMapper2_h
00025 #define __vtkCompositePolyDataMapper2_h
00026 
00027 #include "vtkPainterPolyDataMapper.h"
00028 
00029 class VTK_RENDERING_EXPORT vtkCompositePolyDataMapper2 : public vtkPainterPolyDataMapper
00030 {
00031 public:
00032   static vtkCompositePolyDataMapper2* New();
00033   vtkTypeMacro(vtkCompositePolyDataMapper2, vtkPainterPolyDataMapper);
00034   void PrintSelf(ostream& os, vtkIndent indent);
00035 
00044   virtual bool GetIsOpaque();
00045 
00046 //BTX
00047 protected:
00048   vtkCompositePolyDataMapper2();
00049   ~vtkCompositePolyDataMapper2();
00050 
00054   vtkExecutive* CreateDefaultExecutive();
00055 
00057   virtual int FillInputPortInformation(int port, vtkInformation* info);
00058 
00060   virtual void ComputeBounds();
00061 
00063   vtkTimeStamp BoundsMTime;
00064 
00065 private:
00066   vtkCompositePolyDataMapper2(const vtkCompositePolyDataMapper2&); // Not implemented.
00067   void operator=(const vtkCompositePolyDataMapper2&); // Not implemented.
00068 //ETX
00069 };
00070 
00071 #endif
00072 
00073