VTK
vtkOrientedGlyphContourRepresentation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkOrientedGlyphContourRepresentation.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 vtkOrientedGlyphContourRepresentation_h
32 #define vtkOrientedGlyphContourRepresentation_h
33 
34 #include "vtkInteractionWidgetsModule.h" // For export macro
36 
37 class vtkProperty;
38 class vtkActor;
39 class vtkPolyDataMapper;
40 class vtkPolyData;
41 class vtkGlyph3D;
42 class vtkPoints;
43 
44 class VTKINTERACTIONWIDGETS_EXPORT vtkOrientedGlyphContourRepresentation : public vtkContourRepresentation
45 {
46 public:
51 
53 
57  void PrintSelf(ostream& os, vtkIndent indent) override;
59 
61 
66  void SetCursorShape(vtkPolyData *cursorShape);
67  vtkPolyData *GetCursorShape();
69 
71 
76  void SetActiveCursorShape(vtkPolyData *activeShape);
77  vtkPolyData *GetActiveCursorShape();
79 
81 
85  vtkGetObjectMacro(Property,vtkProperty);
87 
89 
93  vtkGetObjectMacro(ActiveProperty,vtkProperty);
95 
97 
100  vtkGetObjectMacro(LinesProperty,vtkProperty);
102 
104 
109  void SetRenderer(vtkRenderer *ren) override;
110  void BuildRepresentation() override;
111  void StartWidgetInteraction(double eventPos[2]) override;
112  void WidgetInteraction(double eventPos[2]) override;
113  int ComputeInteractionState(int X, int Y, int modified=0) override;
115 
117 
120  void GetActors(vtkPropCollection *) override;
121  void ReleaseGraphicsResources(vtkWindow *) override;
122  int RenderOverlay(vtkViewport *viewport) override;
123  int RenderOpaqueGeometry(vtkViewport *viewport) override;
124  int RenderTranslucentPolygonalGeometry(vtkViewport *viewport) override;
127 
132 
134 
140  vtkSetMacro( AlwaysOnTop, vtkTypeBool );
141  vtkGetMacro( AlwaysOnTop, vtkTypeBool );
142  vtkBooleanMacro( AlwaysOnTop, vtkTypeBool );
144 
149  void SetLineColor(double r, double g, double b);
150 
155  void SetShowSelectedNodes(vtkTypeBool) override;
156 
160  double *GetBounds() override;
161 
162 protected:
165 
166  // Render the cursor
179 
186  void CreateSelectedNodesRepresentation();
187 
191 
192  // Support picking
193  double LastPickPosition[3];
194  double LastEventPosition[2];
195 
196  // Methods to manipulate the cursor
197  void Translate(double eventPos[2]);
198  void Scale(double eventPos[2]);
199  void ShiftContour(double eventPos[2]);
200  void ScaleContour(double eventPos[2]);
201 
202  void ComputeCentroid(double* ioCentroid);
203 
204  // Properties used to control the appearance of selected objects and
205  // the manipulator in general.
209  void CreateDefaultProperties();
210 
211 
212  // Distance between where the mouse event happens and where the
213  // widget is focused - maintain this distance during interaction.
214  double InteractionOffset[2];
215 
217 
218  void BuildLines() override;
219 
220 private:
222  void operator=(const vtkOrientedGlyphContourRepresentation&) = delete;
223 };
224 
225 #endif
vtkPolyDataMapper
map vtkPolyData to graphics primitives
Definition: vtkPolyDataMapper.h:42
vtkContourRepresentation::StartWidgetInteraction
void StartWidgetInteraction(double e[2]) override=0
vtkPoints
represent and manipulate 3D points
Definition: vtkPoints.h:39
vtkOrientedGlyphContourRepresentation::ActiveProperty
vtkProperty * ActiveProperty
Definition: vtkOrientedGlyphContourRepresentation.h:207
vtkWidgetRepresentation::GetActors
void GetActors(vtkPropCollection *) override
For some exporters and other other operations we must be able to collect all the actors or volumes.
Definition: vtkWidgetRepresentation.h:217
vtkOrientedGlyphContourRepresentation::ActiveFocalPoint
vtkPoints * ActiveFocalPoint
Definition: vtkOrientedGlyphContourRepresentation.h:178
vtkContourRepresentation::ReleaseGraphicsResources
void ReleaseGraphicsResources(vtkWindow *w) override=0
Methods required by vtkProp superclass.
vtkOrientedGlyphContourRepresentation::FocalData
vtkPolyData * FocalData
Definition: vtkOrientedGlyphContourRepresentation.h:175
vtkContourRepresentation::GetContourRepresentationAsPolyData
virtual vtkPolyData * GetContourRepresentationAsPolyData()=0
Get the points in this contour as a vtkPolyData.
vtkOrientedGlyphContourRepresentation::AlwaysOnTop
vtkTypeBool AlwaysOnTop
Definition: vtkOrientedGlyphContourRepresentation.h:216
vtkOrientedGlyphContourRepresentation::SelectedNodesData
vtkPolyData * SelectedNodesData
Definition: vtkOrientedGlyphContourRepresentation.h:180
vtkContourRepresentation::RenderOverlay
int RenderOverlay(vtkViewport *viewport) override=0
vtkOrientedGlyphContourRepresentation::LinesProperty
vtkProperty * LinesProperty
Definition: vtkOrientedGlyphContourRepresentation.h:208
vtkWidgetRepresentation::SetRenderer
virtual void SetRenderer(vtkRenderer *ren)
Subclasses of vtkWidgetRepresentation must implement these methods.
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkOrientedGlyphContourRepresentation::Glypher
vtkGlyph3D * Glypher
Definition: vtkOrientedGlyphContourRepresentation.h:169
vtkContourRepresentation
represent the vtkContourWidget
Definition: vtkContourRepresentation.h:120
vtkOrientedGlyphContourRepresentation::ActiveFocalData
vtkPolyData * ActiveFocalData
Definition: vtkOrientedGlyphContourRepresentation.h:177
vtkOrientedGlyphContourRepresentation::SelectedNodesMapper
vtkPolyDataMapper * SelectedNodesMapper
Definition: vtkOrientedGlyphContourRepresentation.h:183
vtkContourRepresentation::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkWindow
window superclass for vtkRenderWindow
Definition: vtkWindow.h:37
vtkOrientedGlyphContourRepresentation::SelectedNodesCursorShape
vtkPolyData * SelectedNodesCursorShape
Definition: vtkOrientedGlyphContourRepresentation.h:185
vtkWidgetRepresentation::GetBounds
double * GetBounds() override
Methods to make this class behave as a vtkProp.
Definition: vtkWidgetRepresentation.h:215
vtkOrientedGlyphContourRepresentation::Mapper
vtkPolyDataMapper * Mapper
Definition: vtkOrientedGlyphContourRepresentation.h:168
vtkOrientedGlyphContourRepresentation::LinesMapper
vtkPolyDataMapper * LinesMapper
Definition: vtkOrientedGlyphContourRepresentation.h:189
vtkContourRepresentation::HasTranslucentPolygonalGeometry
vtkTypeBool HasTranslucentPolygonalGeometry() override=0
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THESE METHODS OUTSIDE OF THE RENDE...
vtkOrientedGlyphContourRepresentation::ActiveActor
vtkActor * ActiveActor
Definition: vtkOrientedGlyphContourRepresentation.h:170
vtkActor
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
vtkContourRepresentation::WidgetInteraction
void WidgetInteraction(double e[2]) override=0
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkContourRepresentation.h
vtkOrientedGlyphContourRepresentation::ActiveCursorShape
vtkPolyData * ActiveCursorShape
Definition: vtkOrientedGlyphContourRepresentation.h:174
vtkOrientedGlyphContourRepresentation::LinesActor
vtkActor * LinesActor
Definition: vtkOrientedGlyphContourRepresentation.h:190
vtkOrientedGlyphContourRepresentation
Default representation for the contour widget.
Definition: vtkOrientedGlyphContourRepresentation.h:44
vtkViewport
abstract specification for Viewports
Definition: vtkViewport.h:47
vtkContourRepresentation::BuildLines
virtual void BuildLines()=0
vtkOrientedGlyphContourRepresentation::Property
vtkProperty * Property
Definition: vtkOrientedGlyphContourRepresentation.h:206
vtkGlyph3D
copy oriented and scaled glyph geometry to every input point
Definition: vtkGlyph3D.h:111
vtkOrientedGlyphContourRepresentation::Lines
vtkPolyData * Lines
Definition: vtkOrientedGlyphContourRepresentation.h:188
vtkOrientedGlyphContourRepresentation::SelectedNodesPoints
vtkPoints * SelectedNodesPoints
Definition: vtkOrientedGlyphContourRepresentation.h:181
vtkOrientedGlyphContourRepresentation::ActiveMapper
vtkPolyDataMapper * ActiveMapper
Definition: vtkOrientedGlyphContourRepresentation.h:171
vtkOrientedGlyphContourRepresentation::ActiveGlypher
vtkGlyph3D * ActiveGlypher
Definition: vtkOrientedGlyphContourRepresentation.h:172
vtkRenderer
abstract specification for renderers
Definition: vtkRenderer.h:63
vtkContourRepresentation::Scale
Definition: vtkContourRepresentation.h:374
vtkPolyData
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
vtkOrientedGlyphContourRepresentation::SelectedNodesActor
vtkActor * SelectedNodesActor
Definition: vtkOrientedGlyphContourRepresentation.h:182
vtkContourRepresentation::Translate
Definition: vtkContourRepresentation.h:372
vtkOrientedGlyphContourRepresentation::FocalPoint
vtkPoints * FocalPoint
Definition: vtkOrientedGlyphContourRepresentation.h:176
vtkContourRepresentation::ComputeInteractionState
int ComputeInteractionState(int X, int Y, int modified=0) override=0
vtkProperty
represent surface properties of a geometric object
Definition: vtkProperty.h:66
vtkContourRepresentation::RenderOpaqueGeometry
int RenderOpaqueGeometry(vtkViewport *viewport) override=0
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THESE METHODS OUTSIDE OF THE RENDE...
vtkOrientedGlyphContourRepresentation::SelectedNodesGlypher
vtkGlyph3D * SelectedNodesGlypher
Definition: vtkOrientedGlyphContourRepresentation.h:184
vtkPropCollection
an ordered list of Props
Definition: vtkPropCollection.h:41
vtkContourRepresentation::RenderTranslucentPolygonalGeometry
int RenderTranslucentPolygonalGeometry(vtkViewport *viewport) override=0
vtkOrientedGlyphContourRepresentation::Actor
vtkActor * Actor
Definition: vtkOrientedGlyphContourRepresentation.h:167
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkContourRepresentation::SetShowSelectedNodes
virtual void SetShowSelectedNodes(vtkTypeBool)
A flag to indicate whether to show the Selected nodes Default is to set it to false.
vtkOrientedGlyphContourRepresentation::CursorShape
vtkPolyData * CursorShape
Definition: vtkOrientedGlyphContourRepresentation.h:173
vtkContourRepresentation::BuildRepresentation
void BuildRepresentation() override=0
These are methods that satisfy vtkWidgetRepresentation's API.