VTK  9.0.1
vtkOrientedGlyphFocalPlaneContourRepresentation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkOrientedGlyphFocalPlaneContourRepresentation.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 =========================================================================*/
31 #ifndef vtkOrientedGlyphFocalPlaneContourRepresentation_h
32 #define vtkOrientedGlyphFocalPlaneContourRepresentation_h
33 
35 #include "vtkInteractionWidgetsModule.h" // For export macro
36 
37 class vtkProperty2D;
38 class vtkActor2D;
40 class vtkPolyData;
41 class vtkGlyph2D;
42 class vtkPoints;
43 class vtkPolyData;
44 
45 class VTKINTERACTIONWIDGETS_EXPORT vtkOrientedGlyphFocalPlaneContourRepresentation
47 {
48 public:
53 
55 
59  void PrintSelf(ostream& os, vtkIndent indent) override;
61 
63 
68  void SetCursorShape(vtkPolyData* cursorShape);
69  vtkPolyData* GetCursorShape();
71 
73 
78  void SetActiveCursorShape(vtkPolyData* activeShape);
79  vtkPolyData* GetActiveCursorShape();
81 
83 
87  vtkGetObjectMacro(Property, vtkProperty2D);
89 
91 
95  vtkGetObjectMacro(ActiveProperty, vtkProperty2D);
97 
99 
102  vtkGetObjectMacro(LinesProperty, vtkProperty2D);
104 
106 
111  void SetRenderer(vtkRenderer* ren) override;
112  void BuildRepresentation() override;
113  void StartWidgetInteraction(double eventPos[2]) override;
114  void WidgetInteraction(double eventPos[2]) override;
115  int ComputeInteractionState(int X, int Y, int modified = 0) override;
117 
119 
122  void GetActors2D(vtkPropCollection*) override;
123  void ReleaseGraphicsResources(vtkWindow*) override;
124  int RenderOverlay(vtkViewport* viewport) override;
125  int RenderOpaqueGeometry(vtkViewport* viewport) override;
126  int RenderTranslucentPolygonalGeometry(vtkViewport* viewport) override;
129 
134 
142  vtkMatrix4x4* GetContourPlaneDirectionCosines(const double origin[3]);
143 
144 protected:
147 
148  // Render the cursor
161 
162  // The polydata represents the contour in display co-ordinates.
166 
167  // The polydata represents the contour in world coordinates. It is updated
168  // (kept in sync with Lines) every time the GetContourRepresentationAsPolyData()
169  // method is called.
171 
172  // Support picking
173  double LastPickPosition[3];
174  double LastEventPosition[2];
175 
176  // Methods to manipulate the cursor
177  void Translate(double eventPos[2]);
178  void Scale(double eventPos[2]);
179  void ShiftContour(double eventPos[2]);
180  void ScaleContour(double eventPos[2]);
181 
182  void ComputeCentroid(double* ioCentroid);
183 
184  // Properties used to control the appearance of selected objects and
185  // the manipulator in general.
189 
191 
192  void CreateDefaultProperties();
193 
194  // Distance between where the mouse event happens and where the
195  // widget is focused - maintain this distance during interaction.
196  double InteractionOffset[2];
197 
198  void BuildLines() override;
199 
200 private:
203  void operator=(const vtkOrientedGlyphFocalPlaneContourRepresentation&) = delete;
204 };
205 
206 #endif
int RenderOverlay(vtkViewport *viewport) override=0
Methods required by vtkProp superclass.
copy oriented and scaled glyph geometry to every input point (2D specialization)
Definition: vtkGlyph2D.h:36
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:35
abstract specification for Viewports
Definition: vtkViewport.h:44
void GetActors2D(vtkPropCollection *) override
void BuildRepresentation() override=0
These are methods that satisfy vtkWidgetRepresentation's API.
virtual vtkPolyData * GetContourRepresentationAsPolyData()=0
Get the points in this contour as a vtkPolyData.
a actor that draws 2D data
Definition: vtkActor2D.h:39
virtual void SetRenderer(vtkRenderer *ren)
Subclasses of vtkWidgetRepresentation must implement these methods.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard VTK methods.
abstract specification for renderers
Definition: vtkRenderer.h:67
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:84
void ReleaseGraphicsResources(vtkWindow *w) override=0
Methods required by vtkProp superclass.
void WidgetInteraction(double e[2]) override=0
These are methods that satisfy vtkWidgetRepresentation's API.
an ordered list of Props
int vtkTypeBool
Definition: vtkABI.h:69
window superclass for vtkRenderWindow
Definition: vtkWindow.h:37
a simple class to control print indentation
Definition: vtkIndent.h:33
virtual void BuildLines()=0
represent a contour drawn on the focal plane.
vtkTypeBool HasTranslucentPolygonalGeometry() override=0
Methods required by vtkProp superclass.
void StartWidgetInteraction(double e[2]) override=0
These are methods that satisfy vtkWidgetRepresentation's API.
int RenderTranslucentPolygonalGeometry(vtkViewport *viewport) override=0
Methods required by vtkProp superclass.
represent surface properties of a 2D image
Definition: vtkProperty2D.h:37
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
draw vtkPolyData onto the image plane
represent and manipulate 3D points
Definition: vtkPoints.h:33
int ComputeInteractionState(int X, int Y, int modified=0) override=0
These are methods that satisfy vtkWidgetRepresentation's API.
int RenderOpaqueGeometry(vtkViewport *viewport) override=0
Methods required by vtkProp superclass.