VTK  9.0.3
vtkAnnotatedCubeActor.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAnnotatedCubeActor.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 =========================================================================*/
39 #ifndef vtkAnnotatedCubeActor_h
40 #define vtkAnnotatedCubeActor_h
41 
42 #include "vtkProp3D.h"
43 #include "vtkRenderingAnnotationModule.h" // For export macro
44 
45 class vtkActor;
46 class vtkAppendPolyData;
47 class vtkAssembly;
48 class vtkCubeSource;
49 class vtkFeatureEdges;
50 class vtkPropCollection;
51 class vtkProperty;
52 class vtkRenderer;
53 class vtkTransform;
54 class vtkTransformFilter;
55 class vtkVectorText;
56 
57 class VTKRENDERINGANNOTATION_EXPORT vtkAnnotatedCubeActor : public vtkProp3D
58 {
59 public:
62  void PrintSelf(ostream& os, vtkIndent indent) override;
63 
69  void GetActors(vtkPropCollection*) override;
70 
72 
75  int RenderOpaqueGeometry(vtkViewport* viewport) override;
78 
83 
87  void ShallowCopy(vtkProp* prop) override;
88 
95 
97 
101  void GetBounds(double bounds[6]);
102  double* GetBounds() VTK_SIZEHINT(6) override;
104 
108  vtkMTimeType GetMTime() override;
109 
111 
114  void SetFaceTextScale(double);
115  vtkGetMacro(FaceTextScale, double);
117 
119 
122  vtkProperty* GetXPlusFaceProperty();
123  vtkProperty* GetXMinusFaceProperty();
124  vtkProperty* GetYPlusFaceProperty();
125  vtkProperty* GetYMinusFaceProperty();
126  vtkProperty* GetZPlusFaceProperty();
127  vtkProperty* GetZMinusFaceProperty();
129 
133  vtkProperty* GetCubeProperty();
134 
138  vtkProperty* GetTextEdgesProperty();
139 
141 
144  vtkSetStringMacro(XPlusFaceText);
145  vtkGetStringMacro(XPlusFaceText);
146  vtkSetStringMacro(XMinusFaceText);
147  vtkGetStringMacro(XMinusFaceText);
148  vtkSetStringMacro(YPlusFaceText);
149  vtkGetStringMacro(YPlusFaceText);
150  vtkSetStringMacro(YMinusFaceText);
151  vtkGetStringMacro(YMinusFaceText);
152  vtkSetStringMacro(ZPlusFaceText);
153  vtkGetStringMacro(ZPlusFaceText);
154  vtkSetStringMacro(ZMinusFaceText);
155  vtkGetStringMacro(ZMinusFaceText);
157 
159 
162  void SetTextEdgesVisibility(int);
163  int GetTextEdgesVisibility();
165 
167 
170  void SetCubeVisibility(int);
171  int GetCubeVisibility();
173 
175 
178  void SetFaceTextVisibility(int);
179  int GetFaceTextVisibility();
181 
183 
186  vtkSetMacro(XFaceTextRotation, double);
187  vtkGetMacro(XFaceTextRotation, double);
188  vtkSetMacro(YFaceTextRotation, double);
189  vtkGetMacro(YFaceTextRotation, double);
190  vtkSetMacro(ZFaceTextRotation, double);
191  vtkGetMacro(ZFaceTextRotation, double);
193 
197  vtkAssembly* GetAssembly() { return this->Assembly; }
198 
199 protected:
202 
205 
209 
210  void UpdateProps();
211 
218 
220 
224 
231 
238 
241 
243 
244 private:
246  void operator=(const vtkAnnotatedCubeActor&) = delete;
247 };
248 
249 #endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:46
a 3D cube with face labels
int RenderTranslucentPolygonalGeometry(vtkViewport *viewport) override
vtkVectorText * YPlusFaceVectorText
vtkAppendPolyData * AppendTextEdges
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkVectorText * XPlusFaceVectorText
void GetActors(vtkPropCollection *) override
For some exporters and other other operations we must be able to collect all the actors or volumes.
double * GetBounds() override
Get the bounds for this Prop as (Xmin,Xmax,Ymin,Ymax,Zmin,Zmax).
void ShallowCopy(vtkProp *prop) override
Shallow copy of an axes actor.
void ReleaseGraphicsResources(vtkWindow *) override
Release any graphics resources that are being consumed by this actor.
vtkVectorText * YMinusFaceVectorText
vtkVectorText * ZPlusFaceVectorText
vtkVectorText * ZMinusFaceVectorText
~vtkAnnotatedCubeActor() override
int RenderOpaqueGeometry(vtkViewport *viewport) override
Support the standard render methods.
vtkTypeBool HasTranslucentPolygonalGeometry() override
Does this prop have some translucent polygonal geometry?
static vtkAnnotatedCubeActor * New()
vtkTransformFilter * InternalTransformFilter
void GetBounds(double bounds[6])
Get the bounds for this Actor as (Xmin,Xmax,Ymin,Ymax,Zmin,Zmax).
vtkVectorText * XMinusFaceVectorText
vtkFeatureEdges * ExtractTextEdges
appends one or more polygonal datasets together
create hierarchies of vtkProp3Ds (transformable props)
Definition: vtkAssembly.h:70
create a polygonal representation of a cube
Definition: vtkCubeSource.h:31
extract interior, boundary, non-manifold, and/or sharp edges from polygonal data
a simple class to control print indentation
Definition: vtkIndent.h:34
represents an 3D object for placement in a rendered scene
Definition: vtkProp3D.h:44
an ordered list of Props
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:48
represent surface properties of a geometric object
Definition: vtkProperty.h:62
abstract specification for renderers
Definition: vtkRenderer.h:59
transform points and associated normals and vectors
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:55
create polygonal text
Definition: vtkVectorText.h:42
abstract specification for Viewports
Definition: vtkViewport.h:45
window superclass for vtkRenderWindow
Definition: vtkWindow.h:35
int vtkTypeBool
Definition: vtkABI.h:69
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:293
#define VTK_SIZEHINT(...)