VTK  9.3.1
vtkImageSlice.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
26 #ifndef vtkImageSlice_h
27 #define vtkImageSlice_h
28 
29 #include "vtkProp3D.h"
30 #include "vtkRenderingCoreModule.h" // For export macro
31 
32 VTK_ABI_NAMESPACE_BEGIN
33 class vtkRenderer;
34 class vtkPropCollection;
35 class vtkImageProperty;
36 class vtkImageMapper3D;
37 
38 class VTKRENDERINGCORE_EXPORT vtkImageSlice : public vtkProp3D
39 {
40 public:
41  vtkTypeMacro(vtkImageSlice, vtkProp3D);
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
49  static vtkImageSlice* New();
50 
52 
55  void SetMapper(vtkImageMapper3D* mapper);
56  vtkGetObjectMacro(Mapper, vtkImageMapper3D);
58 
60 
63  void SetProperty(vtkImageProperty* property);
64  virtual vtkImageProperty* GetProperty();
66 
70  void Update();
71 
73 
77  double* GetBounds() override;
78  void GetBounds(double bounds[6]) { this->vtkProp3D::GetBounds(bounds); }
79  double GetMinXBound();
80  double GetMaxXBound();
81  double GetMinYBound();
82  double GetMaxYBound();
83  double GetMinZBound();
84  double GetMaxZBound();
86 
90  vtkMTimeType GetMTime() override;
91 
98  vtkMTimeType GetRedrawMTime() override;
99 
101 
104  vtkGetMacro(ForceTranslucent, bool);
105  vtkSetMacro(ForceTranslucent, bool);
106  vtkBooleanMacro(ForceTranslucent, bool);
108 
112  void ShallowCopy(vtkProp* prop) override;
113 
119  void GetImages(vtkPropCollection*);
120 
122 
125  int RenderOverlay(vtkViewport* viewport) override;
126  int RenderOpaqueGeometry(vtkViewport* viewport) override;
127  int RenderTranslucentPolygonalGeometry(vtkViewport* viewport) override;
129 
135 
140  virtual void Render(vtkRenderer*);
141 
145  void ReleaseGraphicsResources(vtkWindow* win) override;
146 
153  void SetStackedImagePass(int pass);
154 
155 protected:
156  vtkImageSlice();
157  ~vtkImageSlice() override;
158 
161 
163 
164 private:
165  vtkImageSlice(const vtkImageSlice&) = delete;
166  void operator=(const vtkImageSlice&) = delete;
167 };
168 
169 VTK_ABI_NAMESPACE_END
170 #endif
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:45
void GetBounds(double bounds[6])
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time...
Definition: vtkImageSlice.h:78
double * GetBounds() override=0
Return a reference to the Prop3D's composite transform.
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:270
abstract specification for Viewports
Definition: vtkViewport.h:44
virtual int RenderOpaqueGeometry(vtkViewport *)
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THESE METHODS OUTSIDE OF THE RENDE...
Definition: vtkProp.h:213
virtual vtkTypeBool HasTranslucentPolygonalGeometry()
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THESE METHODS OUTSIDE OF THE RENDE...
Definition: vtkProp.h:277
virtual int RenderOverlay(vtkViewport *)
Definition: vtkProp.h:216
image display properties
abstract specification for renderers
Definition: vtkRenderer.h:61
represents an 3D object for placement in a rendered scene
Definition: vtkProp3D.h:38
vtkImageProperty * Property
an ordered list of Props
int vtkTypeBool
Definition: vtkABI.h:64
virtual void ReleaseGraphicsResources(vtkWindow *)
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Release any graphics resources that are being...
Definition: vtkProp.h:298
window superclass for vtkRenderWindow
Definition: vtkWindow.h:27
virtual vtkMTimeType GetRedrawMTime()
Return the mtime of anything that would cause the rendered image to appear differently.
Definition: vtkProp.h:106
a simple class to control print indentation
Definition: vtkIndent.h:28
abstract class for mapping images to the screen
vtkImageMapper3D * Mapper
void ShallowCopy(vtkProp *prop) override
Shallow copy of this vtkProp3D.
represents an image in a 3D scene
Definition: vtkImageSlice.h:38
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int RenderTranslucentPolygonalGeometry(vtkViewport *)
Definition: vtkProp.h:214
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
vtkMTimeType GetMTime() override
Get the vtkProp3D's mtime.