VTK  9.3.1
vtkResliceCursorActor.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
15 #ifndef vtkResliceCursorActor_h
16 #define vtkResliceCursorActor_h
17 
18 #include "vtkInteractionWidgetsModule.h" // For export macro
19 #include "vtkProp3D.h"
20 
21 VTK_ABI_NAMESPACE_BEGIN
22 class vtkResliceCursor;
24 class vtkPolyDataMapper;
25 class vtkActor;
26 class vtkProperty;
27 class vtkBoundingBox;
28 
29 class VTKINTERACTIONWIDGETS_EXPORT vtkResliceCursorActor : public vtkProp3D
30 {
31 
32 public:
34 
37  static vtkResliceCursorActor* New();
39  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
43 
46  vtkGetObjectMacro(CursorAlgorithm, vtkResliceCursorPolyDataAlgorithm);
48 
52  int RenderOpaqueGeometry(vtkViewport* viewport) override;
53 
58 
64  void ReleaseGraphicsResources(vtkWindow*) override;
65 
69  double* GetBounds() override;
70 
74  vtkMTimeType GetMTime() override;
75 
77 
80  vtkProperty* GetCenterlineProperty(int i);
81  vtkProperty* GetThickSlabProperty(int i);
83 
87  vtkActor* GetCenterlineActor(int axis);
88 
92  virtual void SetUserMatrix(vtkMatrix4x4* matrix);
93 
94 protected:
96  ~vtkResliceCursorActor() override;
97 
98  void UpdateViewProps(vtkViewport* v = nullptr);
99  void UpdateHoleSize(vtkViewport* v);
100 
102  vtkPolyDataMapper* CursorCenterlineMapper[3];
103  vtkActor* CursorCenterlineActor[3];
104  vtkPolyDataMapper* CursorThickSlabMapper[3];
105  vtkActor* CursorThickSlabActor[3];
106  vtkProperty* CenterlineProperty[3];
107  vtkProperty* ThickSlabProperty[3];
108 
109 private:
111  void operator=(const vtkResliceCursorActor&) = delete;
112 };
113 
114 VTK_ABI_NAMESPACE_END
115 #endif
vtkResliceCursorPolyDataAlgorithm * CursorAlgorithm
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:40
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:30
void SetUserMatrix(vtkMatrix4x4 *matrix)
The UserMatrix can be used in place of UserTransform.
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
represent surface properties of a geometric object
Definition: vtkProperty.h:56
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
generates a 2D reslice cursor polydata
represents an 3D object for placement in a rendered scene
Definition: vtkProp3D.h:38
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
a simple class to control print indentation
Definition: vtkIndent.h:28
Represent a reslice cursor.
map vtkPolyData to graphics primitives
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
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.
Fast, simple class for representing and operating on 3D bounds.
Geometry for a reslice cursor.