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 =========================================================================*/
35 #ifndef vtkProjectedAAHexahedraMapper_h
36 #define vtkProjectedAAHexahedraMapper_h
37 
38 #include "vtkRenderingVolumeModule.h" // For export macro
40 
41 class vtkFloatArray;
42 class vtkPoints;
44 class vtkVisibilitySort;
45 class vtkVolumeProperty;
46 class vtkRenderWindow;
47 
48 class VTKRENDERINGVOLUME_EXPORT vtkProjectedAAHexahedraMapper : public vtkUnstructuredGridVolumeMapper
49 {
50 public:
51  vtkTypeMacro(vtkProjectedAAHexahedraMapper,
54  virtual void PrintSelf(ostream &os, vtkIndent indent);
55 
57 
61  virtual void SetVisibilitySort(vtkVisibilitySort *sort);
62  vtkGetObjectMacro(VisibilitySort, vtkVisibilitySort);
64 
69  virtual bool IsRenderSupported(vtkRenderWindow *w)=0;
70 
71 protected:
74 
79  void ReportReferences(vtkGarbageCollector *collector) VTK_OVERRIDE;
80 
82 
83 private:
85  void operator=(const vtkProjectedAAHexahedraMapper &) VTK_DELETE_FUNCTION;
86 };
87 
88 #endif
vtkPoints
represent and manipulate 3D points
Definition: vtkPoints.h:39
vtkFloatArray
dynamic, self-adjusting array of float
Definition: vtkFloatArray.h:41
vtkUnsignedCharArray
dynamic, self-adjusting array of unsigned char
Definition: vtkUnsignedCharArray.h:41
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkProjectedAAHexahedraMapper
volume mapper for axis-aligned hexahedra
Definition: vtkProjectedAAHexahedraMapper.h:48
vtkGarbageCollector
Detect and break reference loops.
Definition: vtkGarbageCollector.h:99
vtkUnstructuredGridVolumeMapper::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
vtkVisibilitySort
Abstract class that can sort cell data along a viewpoint.
Definition: vtkVisibilitySort.h:57
vtkAlgorithm::New
static vtkAlgorithm * New()
vtkAlgorithm::ReportReferences
void ReportReferences(vtkGarbageCollector *) override
vtkUnstructuredGridVolumeMapper
Abstract class for a unstructured grid volume mapper.
Definition: vtkUnstructuredGridVolumeMapper.h:40
vtkRenderWindow
create a window for renderers to draw into
Definition: vtkRenderWindow.h:86
vtkUnstructuredGridVolumeMapper.h
vtkProjectedAAHexahedraMapper::VisibilitySort
vtkVisibilitySort * VisibilitySort
Definition: vtkProjectedAAHexahedraMapper.h:81
vtkVolumeProperty
represents the common properties for rendering a volume.
Definition: vtkVolumeProperty.h:60