VTK  9.3.1
vtkMultiVolume.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 vtkMultiVolume_h
27 #define vtkMultiVolume_h
28 #include <array> // for std::array
29 #include <unordered_map> // For std::unordered_map
30 
31 #include "vtkMatrix4x4.h" // For Matrix
32 #include "vtkRenderingVolumeModule.h" // For export macro
33 #include "vtkSmartPointer.h" // For vtkSmartPointer
34 #include "vtkVolume.h"
35 
36 VTK_ABI_NAMESPACE_BEGIN
38 class vtkBoundingBox;
39 class vtkMatrix4x4;
40 class vtkRenderer;
41 class vtkVolumeProperty;
42 class vtkWindow;
43 class vtkVolumeProperty;
45 
46 class VTKRENDERINGVOLUME_EXPORT vtkMultiVolume : public vtkVolume
47 {
48 public:
49  static vtkMultiVolume* New();
50  vtkTypeMacro(vtkMultiVolume, vtkVolume);
51  void PrintSelf(ostream& os, vtkIndent indent) override;
52 
54 
57  void SetVolume(vtkVolume* volume, int port = 0);
58  vtkVolume* GetVolume(int port = 0);
59  void RemoveVolume(int port) { this->SetVolume(nullptr, port); }
61 
63 
70  void SetProperty(vtkVolumeProperty* property) override;
71  vtkVolumeProperty* GetProperty() override;
73 
80  double* GetBounds() override;
81 
85  vtkMTimeType GetMTime() override;
86 
92  void ShallowCopy(vtkProp* prop) override;
93 
102  using vtkVolume::GetMatrix;
103  vtkMatrix4x4* GetMatrix() override { return this->Matrix; }
104 
110  vtkMatrix4x4* GetTextureMatrix() { return this->TexToBBox.GetPointer(); }
111 
115  double* GetDataBounds() { return this->DataBounds.data(); }
116 
117  vtkMTimeType GetBoundsTime() { return this->BoundsComputeTime.GetMTime(); }
118 
125  int RenderVolumetricGeometry(vtkViewport* vp) override;
126 
130  double* GetDataGeometry() { return this->DataGeometry.data(); }
131 
132 protected:
133  vtkMultiVolume();
134  ~vtkMultiVolume() override;
135 
142  void ComputeMatrix() override {}
143 
147  vtkVolume* FindVolume(int port);
148 
153  bool VolumesChanged();
154 
161  std::array<double, 6> ComputeAABounds(double bounds[6], vtkMatrix4x4* T) const;
162 
163  std::array<double, 6> DataBounds;
164  std::array<double, 24> DataGeometry;
165  std::unordered_map<int, vtkVolume*> Volumes;
168 
169 private:
170  vtkMultiVolume(const vtkMultiVolume&) = delete;
171  void operator=(const vtkMultiVolume&) = delete;
172 };
173 VTK_ABI_NAMESPACE_END
174 #endif
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:45
vtkMatrix4x4 * GetMatrix() override
Get a pointer to an internal vtkMatrix4x4.
vtkSmartPointer< vtkMatrix4x4 > TexToBBox
represents a volume (data & properties) in a rendered scene
Definition: vtkVolume.h:39
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:30
double * GetDataGeometry()
Return the eight corners of the volume.
virtual void SetProperty(vtkVolumeProperty *property)
Set/Get the volume property.
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:270
abstract specification for Viewports
Definition: vtkViewport.h:44
vtkMatrix4x4 * GetTextureMatrix()
Returns the transformation from texture coordinates to data cooridinates of the bounding-box.
record modification and/or execution time
Definition: vtkTimeStamp.h:24
vtkTimeStamp BoundsComputeTime
void RemoveVolume(int port)
Add / Remove a vtkVolume instance.
void ShallowCopy(vtkProp *prop) override
Shallow copy of this vtkVolume.
virtual vtkVolumeProperty * GetProperty()
Set/Get the volume property.
Abstract class for a volume mapper.
abstract specification for renderers
Definition: vtkRenderer.h:61
window superclass for vtkRenderWindow
Definition: vtkWindow.h:27
a simple class to control print indentation
Definition: vtkIndent.h:28
std::array< double, 24 > DataGeometry
vtkMTimeType GetMTime() override
Return the MTime also considering the property etc.
static vtkVolume * New()
Creates a Volume with the following defaults: origin(0,0,0) position=(0,0,0) scale=1 visibility=1 pic...
std::array< double, 6 > DataBounds
represents the common properties for rendering a volume.
vtkMatrix4x4 * GetMatrix() override
Get a pointer to an internal vtkMatrix4x4.
Definition: vtkProp3D.h:328
Represents a world axis-aligned bounding-box containing a set of volumes in a rendered scene...
void ComputeMatrix() override
The transformation matrix of this vtkProp3D is not user-definable, (only the registered vtkVolume ins...
std::unordered_map< int, vtkVolume * > Volumes
vtkMTimeType GetBoundsTime()
int RenderVolumetricGeometry(vtkViewport *viewport) override
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THIS METHOD OUTSIDE OF THE RENDERI...
double * GetDataBounds()
Total bounds in data coordinates.
double * GetBounds() override
Get the bounds - either all six at once (xmin, xmax, ymin, ymax, zmin, zmax) or one at a time...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMatrix4x4 * Matrix
Definition: vtkProp3D.h:389
Fast, simple class for representing and operating on 3D bounds.