VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkProjectedAAHexahedraMapper.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 =========================================================================*/ 00034 #ifndef __vtkProjectedAAHexahedraMapper_h 00035 #define __vtkProjectedAAHexahedraMapper_h 00036 00037 #include "vtkRenderingVolumeModule.h" // For export macro 00038 #include "vtkUnstructuredGridVolumeMapper.h" 00039 00040 class vtkFloatArray; 00041 class vtkPoints; 00042 class vtkUnsignedCharArray; 00043 class vtkVisibilitySort; 00044 class vtkVolumeProperty; 00045 class vtkRenderWindow; 00046 00047 class VTKRENDERINGVOLUME_EXPORT vtkProjectedAAHexahedraMapper : public vtkUnstructuredGridVolumeMapper 00048 { 00049 public: 00050 vtkTypeMacro(vtkProjectedAAHexahedraMapper, 00051 vtkUnstructuredGridVolumeMapper); 00052 static vtkProjectedAAHexahedraMapper *New(); 00053 virtual void PrintSelf(ostream &os, vtkIndent indent); 00054 00056 00058 virtual void SetVisibilitySort(vtkVisibilitySort *sort); 00059 vtkGetObjectMacro(VisibilitySort, vtkVisibilitySort); 00061 00064 virtual bool IsRenderSupported(vtkRenderWindow *w)=0; 00065 00066 protected: 00067 vtkProjectedAAHexahedraMapper(); 00068 ~vtkProjectedAAHexahedraMapper(); 00069 00072 virtual void ReportReferences(vtkGarbageCollector *collector); 00073 00074 vtkVisibilitySort *VisibilitySort; 00075 00076 private: 00077 vtkProjectedAAHexahedraMapper(const vtkProjectedAAHexahedraMapper &); // Not Implemented. 00078 void operator=(const vtkProjectedAAHexahedraMapper &); // Not Implemented. 00079 }; 00080 00081 #endif