VTK
vtkAngleRepresentation3D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAngleRepresentation3D.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 =========================================================================*/
34 #ifndef vtkAngleRepresentation3D_h
35 #define vtkAngleRepresentation3D_h
36 
37 #include "vtkInteractionWidgetsModule.h" // For export macro
38 #include "vtkAngleRepresentation.h"
39 
40 class vtkActor;
41 class vtkProperty;
42 class vtkPolyDataMapper;
43 class vtkLineSource;
44 class vtkArcSource;
45 class vtkFollower;
46 class vtkVectorText;
47 class vtkPolyDataMapper;
48 class vtkTextProperty;
49 
50 class VTKINTERACTIONWIDGETS_EXPORT vtkAngleRepresentation3D : public vtkAngleRepresentation
51 {
52 public:
56  static vtkAngleRepresentation3D *New();
57 
59 
63  void PrintSelf(ostream& os, vtkIndent indent) override;
65 
69  double GetAngle() override;
70 
72 
77  void GetPoint1WorldPosition(double pos[3]) override;
78  void GetCenterWorldPosition(double pos[3]) override;
79  void GetPoint2WorldPosition(double pos[3]) override;
80  virtual void SetPoint1WorldPosition(double pos[3]);
81  void SetPoint1DisplayPosition(double pos[3]) override;
82  virtual void SetCenterWorldPosition(double pos[3]);
83  void SetCenterDisplayPosition(double pos[3]) override;
84  virtual void SetPoint2WorldPosition(double pos[3]);
85  void SetPoint2DisplayPosition(double pos[3]) override;
86  void GetPoint1DisplayPosition(double pos[3]) override;
87  void GetCenterDisplayPosition(double pos[3]) override;
88  void GetPoint2DisplayPosition(double pos[3]) override;
90 
92 
97  vtkGetObjectMacro(Ray1,vtkActor);
98  vtkGetObjectMacro(Ray2,vtkActor);
99  vtkGetObjectMacro(Arc,vtkActor);
100  vtkGetObjectMacro(TextActor,vtkFollower);
102 
104 
107  virtual void SetTextActorScale( double scale[3] );
108  virtual double * GetTextActorScale();
110 
115  void BuildRepresentation() override;
116 
118 
121  void ReleaseGraphicsResources(vtkWindow *w) override;
122  int RenderOpaqueGeometry(vtkViewport*) override;
126 
127 protected:
129  ~vtkAngleRepresentation3D() override;
130 
131  // The pieces that make up the angle representations
144  double Angle;
146  double TextPosition[3];
147 
148 private:
150  void operator=(const vtkAngleRepresentation3D&) = delete;
151 };
152 
153 #endif
vtkPolyDataMapper
map vtkPolyData to graphics primitives
Definition: vtkPolyDataMapper.h:42
vtkFollower
a subclass of actor that always faces the camera
Definition: vtkFollower.h:46
vtkAngleRepresentation3D::TextMapper
vtkPolyDataMapper * TextMapper
Definition: vtkAngleRepresentation3D.h:142
vtkAngleRepresentation::GetCenterDisplayPosition
virtual void GetCenterDisplayPosition(double pos[3])=0
vtkAngleRepresentation::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkX3D::scale
Definition: vtkX3D.h:229
vtkAngleRepresentation3D::Ray2
vtkActor * Ray2
Definition: vtkAngleRepresentation3D.h:139
vtkAngleRepresentation.h
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkAngleRepresentation3D::ArcSource
vtkArcSource * ArcSource
Definition: vtkAngleRepresentation3D.h:134
vtkAngleRepresentation::SetPoint2DisplayPosition
virtual void SetPoint2DisplayPosition(double pos[3])=0
vtkAngleRepresentation3D::Line1Source
vtkLineSource * Line1Source
Definition: vtkAngleRepresentation3D.h:132
vtkAngleRepresentation::BuildRepresentation
void BuildRepresentation() override
These are methods that satisfy vtkWidgetRepresentation's API.
vtkAngleRepresentation::GetAngle
virtual double GetAngle()=0
This representation and all subclasses must keep an angle (in degrees) consistent with the state of t...
vtkAngleRepresentation3D::Line1Mapper
vtkPolyDataMapper * Line1Mapper
Definition: vtkAngleRepresentation3D.h:135
vtkVectorText
create polygonal text
Definition: vtkVectorText.h:47
vtkArcSource
create a circular arc
Definition: vtkArcSource.h:48
vtkWindow
window superclass for vtkRenderWindow
Definition: vtkWindow.h:37
vtkAngleRepresentation3D::ArcMapper
vtkPolyDataMapper * ArcMapper
Definition: vtkAngleRepresentation3D.h:137
vtkWidgetRepresentation::RenderTranslucentPolygonalGeometry
int RenderTranslucentPolygonalGeometry(vtkViewport *vtkNotUsed(viewport)) override
Definition: vtkWidgetRepresentation.h:223
vtkWidgetRepresentation::ReleaseGraphicsResources
void ReleaseGraphicsResources(vtkWindow *) override
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Release any graphics resources that are being...
Definition: vtkWidgetRepresentation.h:220
vtkAngleRepresentation3D::ScaleInitialized
bool ScaleInitialized
Definition: vtkAngleRepresentation3D.h:145
vtkAngleRepresentation::GetPoint2WorldPosition
virtual void GetPoint2WorldPosition(double pos[3])=0
vtkActor
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkAngleRepresentation3D::TextActor
vtkFollower * TextActor
Definition: vtkAngleRepresentation3D.h:141
vtkAngleRepresentation3D::Angle
double Angle
Definition: vtkAngleRepresentation3D.h:144
vtkLineSource
create a line defined by two end points
Definition: vtkLineSource.h:42
vtkAngleRepresentation3D::Line2Source
vtkLineSource * Line2Source
Definition: vtkAngleRepresentation3D.h:133
vtkViewport
abstract specification for Viewports
Definition: vtkViewport.h:47
vtkAngleRepresentation3D
represent the vtkAngleWidget
Definition: vtkAngleRepresentation3D.h:50
vtkTextProperty
represent text properties.
Definition: vtkTextProperty.h:39
vtkAngleRepresentation::SetPoint1DisplayPosition
virtual void SetPoint1DisplayPosition(double pos[3])=0
vtkWidgetRepresentation::RenderOpaqueGeometry
int RenderOpaqueGeometry(vtkViewport *vtkNotUsed(viewport)) override
Definition: vtkWidgetRepresentation.h:222
vtkAngleRepresentation3D::Ray1
vtkActor * Ray1
Definition: vtkAngleRepresentation3D.h:138
vtkAngleRepresentation3D::Arc
vtkActor * Arc
Definition: vtkAngleRepresentation3D.h:140
vtkAngleRepresentation::GetPoint1DisplayPosition
virtual void GetPoint1DisplayPosition(double pos[3])=0
vtkAngleRepresentation::GetPoint2DisplayPosition
virtual void GetPoint2DisplayPosition(double pos[3])=0
vtkAngleRepresentation3D::Line2Mapper
vtkPolyDataMapper * Line2Mapper
Definition: vtkAngleRepresentation3D.h:136
vtkAngleRepresentation::GetCenterWorldPosition
virtual void GetCenterWorldPosition(double pos[3])=0
vtkProperty
represent surface properties of a geometric object
Definition: vtkProperty.h:66
vtkWidgetRepresentation::HasTranslucentPolygonalGeometry
vtkTypeBool HasTranslucentPolygonalGeometry() override
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THESE METHODS OUTSIDE OF THE RENDE...
Definition: vtkWidgetRepresentation.h:225
vtkAngleRepresentation3D::TextInput
vtkVectorText * TextInput
Definition: vtkAngleRepresentation3D.h:143
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkAngleRepresentation::SetCenterDisplayPosition
virtual void SetCenterDisplayPosition(double pos[3])=0
vtkAngleRepresentation
represent the vtkAngleWidget
Definition: vtkAngleRepresentation.h:39
vtkAngleRepresentation::GetPoint1WorldPosition
virtual void GetPoint1WorldPosition(double pos[3])=0
Methods to Set/Get the coordinates of the three points defining this representation.