VTK  9.2.6
vtkDistanceRepresentation3D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDistanceRepresentation3D.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 =========================================================================*/
32 #ifndef vtkDistanceRepresentation3D_h
33 #define vtkDistanceRepresentation3D_h
34 
36 #include "vtkInteractionWidgetsModule.h" // For export macro
37 
38 class vtkPoints;
39 class vtkPolyData;
40 class vtkPolyDataMapper;
41 class vtkActor;
42 class vtkVectorText;
43 class vtkFollower;
44 class vtkBox;
45 class vtkCylinderSource;
46 class vtkGlyph3D;
47 class vtkDoubleArray;
49 class vtkProperty;
50 
51 class VTKINTERACTIONWIDGETS_EXPORT vtkDistanceRepresentation3D : public vtkDistanceRepresentation
52 {
53 public:
58 
60 
64  void PrintSelf(ostream& os, vtkIndent indent) override;
66 
70  double GetDistance() override { return this->Distance; }
71 
73 
77  void SetGlyphScale(double scale);
78  vtkGetMacro(GlyphScale, double);
80 
84  virtual vtkProperty* GetLineProperty();
85 
87 
91  void SetLabelPosition(double labelPosition);
92  vtkGetMacro(LabelPosition, double);
94 
96 
99  vtkSetClampMacro(MaximumNumberOfRulerTicks, int, 1, VTK_INT_MAX);
100  vtkGetMacro(MaximumNumberOfRulerTicks, int);
102 
104 
108  vtkGetObjectMacro(GlyphActor, vtkActor);
110 
112 
116  vtkGetObjectMacro(LabelActor, vtkFollower);
117  virtual void SetLabelActor(vtkFollower*);
119 
121 
126  double* GetPoint1WorldPosition() override;
127  double* GetPoint2WorldPosition() override;
128  void GetPoint1WorldPosition(double pos[3]) override;
129  void GetPoint2WorldPosition(double pos[3]) override;
130  void SetPoint1WorldPosition(double pos[3]) override;
131  void SetPoint2WorldPosition(double pos[3]) override;
133 
134  void SetPoint1DisplayPosition(double pos[3]) override;
135  void SetPoint2DisplayPosition(double pos[3]) override;
136  void GetPoint1DisplayPosition(double pos[3]) override;
137  void GetPoint2DisplayPosition(double pos[3]) override;
138 
140 
143  void BuildRepresentation() override;
144  double* GetBounds() override;
146 
148 
151  void ReleaseGraphicsResources(vtkWindow* w) override;
152  int RenderOpaqueGeometry(vtkViewport* viewport) override;
153  int RenderTranslucentPolygonalGeometry(vtkViewport* viewport) override;
155 
157 
161  void SetLabelScale(double x, double y, double z)
162  {
163  double scale[3];
164  scale[0] = x;
165  scale[1] = y;
166  scale[2] = z;
167  this->SetLabelScale(scale);
168  }
169  virtual void SetLabelScale(double scale[3]);
170  virtual double* GetLabelScale();
172 
176  virtual vtkProperty* GetLabelProperty();
177 
178 protected:
180  ~vtkDistanceRepresentation3D() override;
181 
182  // The line
187 
188  // The distance label
192 
193  // Support internal operations
195 
196  // The 3D disk tick marks
205 
206  // Glyph3D scale
207  double GlyphScale;
209 
210  // The distance between the two points
211  double Distance;
212 
213  // Support GetBounds() method
215 
216  // Maximum number of ticks on the 3d ruler
218 
219  // Label title position
221 
222 private:
224  void operator=(const vtkDistanceRepresentation3D&) = delete;
225 
226  // Internal method to update the position of the label.
227  void UpdateLabelPosition();
228 };
229 
230 #endif
virtual void SetPoint1WorldPosition(double pos[3])=0
Methods to Set/Get the coordinates of the two points defining this representation.
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
generate a polygonal cylinder centered at the origin
virtual void SetPoint1DisplayPosition(double pos[3])=0
Methods to Set/Get the coordinates of the two points defining this representation.
abstract specification for Viewports
Definition: vtkViewport.h:55
represent the vtkDistanceWidget
represent surface properties of a geometric object
Definition: vtkProperty.h:67
#define VTK_INT_MAX
Definition: vtkType.h:155
void PrintSelf(ostream &os, vtkIndent indent) override
Standard VTK methods.
transform points and associated normals and vectors for polygonal dataset
virtual void GetPoint1DisplayPosition(double pos[3])=0
Methods to Set/Get the coordinates of the two points defining this representation.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:90
represent the vtkDistanceWidget
virtual void GetPoint2DisplayPosition(double pos[3])=0
Methods to Set/Get the coordinates of the two points defining this representation.
double * GetBounds() override
Methods to make this class behave as a vtkProp.
dynamic, self-adjusting array of double
window superclass for vtkRenderWindow
Definition: vtkWindow.h:38
virtual double * GetPoint1WorldPosition()=0
Methods to Set/Get the coordinates of the two points defining this representation.
int RenderTranslucentPolygonalGeometry(vtkViewport *vtkNotUsed(viewport)) override
void SetLabelScale(double x, double y, double z)
Scale text (font size along each dimension).
a simple class to control print indentation
Definition: vtkIndent.h:39
copy oriented and scaled glyph geometry to every input point
Definition: vtkGlyph3D.h:112
void ReleaseGraphicsResources(vtkWindow *) override
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Release any graphics resources that are being...
virtual void SetPoint2DisplayPosition(double pos[3])=0
Methods to Set/Get the coordinates of the two points defining this representation.
int RenderOpaqueGeometry(vtkViewport *vtkNotUsed(viewport)) override
map vtkPolyData to graphics primitives
virtual double * GetPoint2WorldPosition()=0
Methods to Set/Get the coordinates of the two points defining this representation.
a subclass of actor that always faces the camera
Definition: vtkFollower.h:43
vtkTransformPolyDataFilter * GlyphXForm
void BuildRepresentation() override
These are methods that satisfy vtkWidgetRepresentation's API.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
implicit function for a bounding box
Definition: vtkBox.h:41
virtual void SetPoint2WorldPosition(double pos[3])=0
Methods to Set/Get the coordinates of the two points defining this representation.
represent and manipulate 3D points
Definition: vtkPoints.h:39
double GetDistance() override
Satisfy the superclasses API.
create polygonal text
Definition: vtkVectorText.h:47