VTK  9.5.2
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
25
26#ifndef vtkImageSlice_h
27#define vtkImageSlice_h
28
29#include "vtkProp3D.h"
30#include "vtkRenderingCoreModule.h" // For export macro
31#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
32
33VTK_ABI_NAMESPACE_BEGIN
34class vtkRenderer;
38
39class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkImageSlice : public vtkProp3D
40{
41public:
42 vtkTypeMacro(vtkImageSlice, vtkProp3D);
43 void PrintSelf(ostream& os, vtkIndent indent) override;
44
50 static vtkImageSlice* New();
51
53
57 vtkGetObjectMacro(Mapper, vtkImageMapper3D);
59
61
67
71 void Update();
72
74
78 double* GetBounds() override;
79 void GetBounds(double bounds[6]) { this->vtkProp3D::GetBounds(bounds); }
80 double GetMinXBound();
81 double GetMaxXBound();
82 double GetMinYBound();
83 double GetMaxYBound();
84 double GetMinZBound();
85 double GetMaxZBound();
87
92
100
102
105 vtkGetMacro(ForceTranslucent, bool);
106 vtkSetMacro(ForceTranslucent, bool);
107 vtkBooleanMacro(ForceTranslucent, bool);
109
113 void ShallowCopy(vtkProp* prop) override;
114
121
123
126 int RenderOverlay(vtkViewport* viewport) override;
127 int RenderOpaqueGeometry(vtkViewport* viewport) override;
130
136
141 virtual void Render(vtkRenderer*);
142
147
154 void SetStackedImagePass(int pass);
155
156protected:
158 ~vtkImageSlice() override;
159
162
164
165private:
166 vtkImageSlice(const vtkImageSlice&) = delete;
167 void operator=(const vtkImageSlice&) = delete;
168};
169
170VTK_ABI_NAMESPACE_END
171#endif
abstract class for mapping images to the screen
image display properties
virtual void Render(vtkRenderer *)
This causes the image and its mapper to be rendered.
double GetMaxYBound()
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time.
vtkMTimeType GetMTime() override
Return the MTime also considering the property etc.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkImageMapper3D * Mapper
double GetMinXBound()
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time.
int RenderTranslucentPolygonalGeometry(vtkViewport *viewport) override
Support the standard render methods.
double GetMinZBound()
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time.
double GetMinYBound()
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time.
double GetMaxZBound()
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time.
void Update()
Update the rendering pipeline by updating the ImageMapper.
virtual vtkImageProperty * GetProperty()
Set/Get the image display properties.
static vtkImageSlice * New()
Creates an Image with the following defaults: origin(0,0,0) position=(0,0,0) scale=1 visibility=1 pic...
int RenderOpaqueGeometry(vtkViewport *viewport) override
Support the standard render methods.
void SetProperty(vtkImageProperty *property)
Set/Get the image display properties.
void SetMapper(vtkImageMapper3D *mapper)
Set/Get the mapper.
int RenderOverlay(vtkViewport *viewport) override
Support the standard render methods.
double * GetBounds() override
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time.
void SetStackedImagePass(int pass)
For stacked image rendering, set the pass.
void ShallowCopy(vtkProp *prop) override
Shallow copy of this vtkImageSlice.
vtkMTimeType GetRedrawMTime() override
Return the mtime of anything that would cause the rendered image to appear differently.
void ReleaseGraphicsResources(vtkWindow *win) override
Release any resources held by this prop.
void GetImages(vtkPropCollection *)
For some exporters and other other operations we must be able to collect all the actors,...
~vtkImageSlice() override
double GetMaxXBound()
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time.
vtkImageProperty * Property
vtkTypeBool HasTranslucentPolygonalGeometry() override
Internal method, should only be used by rendering.
void GetBounds(double bounds[6])
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time.
a simple class to control print indentation
Definition vtkIndent.h:29
double * GetBounds() override=0
Return a reference to the Prop3D's composite transform.
an ordered list of Props
abstract specification for renderers
Definition vtkRenderer.h:60
abstract specification for Viewports
Definition vtkViewport.h:47
window superclass for vtkRenderWindow
Definition vtkWindow.h:26
int vtkTypeBool
Definition vtkABI.h:64
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:287
#define VTK_MARSHALAUTO