VTK
vtkProjectedAAHexahedraMapper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkProjectedAAHexahedraMapper.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
32 #ifndef vtkProjectedAAHexahedraMapper_h
33 #define vtkProjectedAAHexahedraMapper_h
34 
35 #include "vtkRenderingVolumeModule.h" // For export macro
37 
38 class vtkFloatArray;
39 class vtkPoints;
41 class vtkVisibilitySort;
42 class vtkVolumeProperty;
43 class vtkRenderWindow;
44 
45 class VTKRENDERINGVOLUME_EXPORT vtkProjectedAAHexahedraMapper : public vtkUnstructuredGridVolumeMapper
46 {
47 public:
48  vtkTypeMacro(vtkProjectedAAHexahedraMapper,
51  void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE;
52 
54 
58  virtual void SetVisibilitySort(vtkVisibilitySort *sort);
59  vtkGetObjectMacro(VisibilitySort, vtkVisibilitySort);
61 
66  virtual bool IsRenderSupported(vtkRenderWindow *w)=0;
67 
68 protected:
70  ~vtkProjectedAAHexahedraMapper() VTK_OVERRIDE;
71 
76  void ReportReferences(vtkGarbageCollector *collector) VTK_OVERRIDE;
77 
78  vtkVisibilitySort *VisibilitySort;
79 
80 private:
82  void operator=(const vtkProjectedAAHexahedraMapper &) VTK_DELETE_FUNCTION;
83 };
84 
85 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Abstract class that can sort cell data along a viewpoint.
dynamic, self-adjusting array of float
Definition: vtkFloatArray.h:35
Detect and break reference loops.
a simple class to control print indentation
Definition: vtkIndent.h:33
Abstract class for a unstructured grid volume mapper.
volume mapper for axis-aligned hexahedra
represents the common properties for rendering a volume.
dynamic, self-adjusting array of unsigned char
create a window for renderers to draw into
static vtkAlgorithm * New()
represent and manipulate 3D points
Definition: vtkPoints.h:33