VTK
vtkSphereRepresentation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSphereRepresentation.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 =========================================================================*/
49 #ifndef vtkSphereRepresentation_h
50 #define vtkSphereRepresentation_h
51 
52 #include "vtkInteractionWidgetsModule.h" // For export macro
54 #include "vtkSphereSource.h" // Needed for fast access to the sphere source
55 
56 class vtkActor;
57 class vtkPolyDataMapper;
58 class vtkSphere;
59 class vtkSphereSource;
60 class vtkCellPicker;
61 class vtkProperty;
62 class vtkPolyData;
63 class vtkPoints;
65 class vtkTransform;
66 class vtkDoubleArray;
67 class vtkMatrix4x4;
68 class vtkTextMapper;
69 class vtkActor2D;
70 class vtkTextProperty;
71 class vtkLineSource;
72 class vtkCursor3D;
73 
74 #define VTK_SPHERE_OFF 0
75 #define VTK_SPHERE_WIREFRAME 1
76 #define VTK_SPHERE_SURFACE 2
77 
78 class VTKINTERACTIONWIDGETS_EXPORT vtkSphereRepresentation : public vtkWidgetRepresentation
79 {
80 public:
84  static vtkSphereRepresentation *New();
85 
87 
91  void PrintSelf(ostream& os, vtkIndent indent);
93 
94  // Used to manage the state of the widget
95  enum {Outside=0,MovingHandle,OnSphere,Translating,Scaling};
96 
98 
102  vtkSetClampMacro(Representation,int,VTK_SPHERE_OFF,VTK_SPHERE_SURFACE);
103  vtkGetMacro(Representation,int);
105  { this->SetRepresentation(VTK_SPHERE_OFF);}
107  { this->SetRepresentation(VTK_SPHERE_WIREFRAME);}
109  { this->SetRepresentation(VTK_SPHERE_SURFACE);}
111 
115  void SetThetaResolution(int r)
116  { this->SphereSource->SetThetaResolution(r); }
118  { return this->SphereSource->GetThetaResolution(); }
119 
123  void SetPhiResolution(int r)
124  { this->SphereSource->SetPhiResolution(r); }
126  { return this->SphereSource->GetPhiResolution(); }
127 
133  void SetCenter(double c[3]);
134  void SetCenter(double x, double y, double z)
135  {double c[3]; c[0]=x; c[1]=y; c[2]=z; this->SetCenter(c);}
136  double* GetCenter()
137  {return this->SphereSource->GetCenter();}
138  void GetCenter(double xyz[3])
139  {this->SphereSource->GetCenter(xyz);}
140 
145  void SetRadius(double r);
146  double GetRadius()
147  { return this->SphereSource->GetRadius(); }
148 
150 
156  vtkSetMacro(HandleVisibility,int);
157  vtkGetMacro(HandleVisibility,int);
158  vtkBooleanMacro(HandleVisibility,int);
160 
162 
166  void SetHandlePosition(double handle[3]);
167  void SetHandlePosition(double x, double y, double z)
168  {double p[3]; p[0]=x; p[1]=y; p[2]=z; this->SetHandlePosition(p);}
169  vtkGetVector3Macro(HandlePosition,double);
171 
173 
178  void SetHandleDirection(double dir[3]);
179  void SetHandleDirection(double dx, double dy, double dz)
180  {double d[3]; d[0]=dx; d[1]=dy; d[2]=dz; this->SetHandleDirection(d);}
181  vtkGetVector3Macro(HandleDirection,double);
183 
185 
192  vtkSetMacro(HandleText,int);
193  vtkGetMacro(HandleText,int);
194  vtkBooleanMacro(HandleText,int);
196 
198 
202  vtkSetMacro(RadialLine,int);
203  vtkGetMacro(RadialLine,int);
204  vtkBooleanMacro(RadialLine,int);
206 
208 
212  vtkSetMacro(CenterCursor, bool);
213  vtkGetMacro(CenterCursor, bool);
214  vtkBooleanMacro(CenterCursor, bool);
216 
224  void GetPolyData(vtkPolyData *pd);
225 
232  void GetSphere(vtkSphere *sphere);
233 
235 
239  vtkGetObjectMacro(SphereProperty,vtkProperty);
240  vtkGetObjectMacro(SelectedSphereProperty,vtkProperty);
242 
244 
249  vtkGetObjectMacro(HandleProperty,vtkProperty);
250  vtkGetObjectMacro(SelectedHandleProperty,vtkProperty);
252 
254 
258  vtkGetObjectMacro(HandleTextProperty,vtkTextProperty);
260 
262 
266  vtkGetObjectMacro(RadialLineProperty,vtkProperty);
268 
278  void SetInteractionState(int state);
279 
281 
286  virtual void PlaceWidget(double bounds[6]);
287  virtual void PlaceWidget(double center[3], double handlePosition[3]);
288  virtual void BuildRepresentation();
289  virtual int ComputeInteractionState(int X, int Y, int modify=0);
290  virtual void StartWidgetInteraction(double e[2]);
291  virtual void WidgetInteraction(double e[2]);
292  virtual double *GetBounds();
294 
296 
299  virtual void ReleaseGraphicsResources(vtkWindow*);
300  virtual int RenderOpaqueGeometry(vtkViewport*);
302  virtual int RenderOverlay(vtkViewport*);
303  virtual int HasTranslucentPolygonalGeometry();
305 
306 protected:
309 
310  // Manage how the representation appears
311  double LastEventPosition[3];
312 
313  // the sphere
317  void HighlightSphere(int highlight);
318 
319  // The representation of the sphere
321 
322  // Do the picking
325  double LastPickPosition[3];
326 
327  // Register internal Pickers within PickingManager
328  virtual void RegisterPickers();
329 
330  // Methods to manipulate the sphere widget
331  void Translate(double *p1, double *p2);
332  void Scale(double *p1, double *p2, int X, int Y);
333  void PlaceHandle(double *center, double radius);
334  virtual void SizeHandles();
335 
336  // Method to adapt the center cursor bounds
337  // so it always have the same pixel size on screen
338  virtual void AdaptCenterCursorBounds();
339 
340  // Properties used to control the appearance of selected objects and
341  // the manipulator in general.
346  void CreateDefaultProperties();
347 
348  // Managing the handle
352  void HighlightHandle(int);
354  double HandleDirection[3];
355  double HandlePosition[3];
356 
357  // Manage the handle label
362 
363  // Manage the radial line segment
369 
370  // Managing the center cursor
375 
376 private:
377  vtkSphereRepresentation(const vtkSphereRepresentation&) VTK_DELETE_FUNCTION;
378  void operator=(const vtkSphereRepresentation&) VTK_DELETE_FUNCTION;
379 };
380 
381 #endif
virtual int RenderOverlay(vtkViewport *vtkNotUsed(viewport))
#define VTK_SPHERE_SURFACE
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
vtkPolyDataMapper * SphereMapper
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:41
vtkPolyDataMapper * CenterMapper
virtual int ComputeInteractionState(int X, int Y, int modify=0)
abstract specification for Viewports
Definition: vtkViewport.h:47
represent surface properties of a geometric object
Definition: vtkProperty.h:64
void SetHandleDirection(double dx, double dy, double dz)
Set/Get the direction vector of the handle relative to the center of the sphere.
virtual void StartWidgetInteraction(double eventPos[2])
void SetCenter(double x, double y, double z)
a actor that draws 2D data
Definition: vtkActor2D.h:45
void SetRepresentationToOff()
Set the representation (i.e., appearance) of the sphere.
void SetPhiResolution(int r)
Set/Get the resolution of the sphere in the phi direction.
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:60
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
virtual void ReleaseGraphicsResources(vtkWindow *)
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Release any graphics resources that are being...
abstract class defines interface between the widget and widget representation classes ...
virtual void BuildRepresentation()=0
Subclasses of vtkWidgetRepresentation must implement these methods.
2D text annotation
Definition: vtkTextMapper.h:53
void SetThetaResolution(int r)
Set/Get the resolution of the sphere in the theta direction.
dynamic, self-adjusting array of double
window superclass for vtkRenderWindow
Definition: vtkWindow.h:37
create a polygonal sphere centered at the origin
virtual double * GetBounds()
Methods to make this class behave as a vtkProp.
implicit function for a sphere
Definition: vtkSphere.h:37
Superclass for algorithms that produce only polydata as output.
virtual int HasTranslucentPolygonalGeometry()
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THESE METHODS OUTSIDE OF THE RENDE...
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual void RegisterPickers()
Register internal Pickers in the Picking Manager.
#define VTK_SPHERE_WIREFRAME
void SetHandlePosition(double x, double y, double z)
Set/Get the position of the handle.
void SetRepresentationToWireframe()
Set the representation (i.e., appearance) of the sphere.
virtual void WidgetInteraction(double newEventPos[2])
#define VTK_SPHERE_OFF
represent text properties.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
void SetRepresentationToSurface()
Set the representation (i.e., appearance) of the sphere.
vtkTextProperty * HandleTextProperty
vtkPolyDataMapper * RadialLineMapper
create a line defined by two end points
Definition: vtkLineSource.h:42
map vtkPolyData to graphics primitives
virtual int RenderOpaqueGeometry(vtkViewport *vtkNotUsed(viewport))
virtual void PlaceWidget(double *vtkNotUsed(bounds[6]))
The following is a suggested API for widget representations.
ray-cast cell picker for all kinds of Prop3Ds
Definition: vtkCellPicker.h:69
generate a 3D cursor representation
Definition: vtkCursor3D.h:39
void PrintSelf(ostream &os, vtkIndent indent)
Standard methods for instances of this class.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
virtual int RenderTranslucentPolygonalGeometry(vtkViewport *vtkNotUsed(viewport))
a class defining the representation for the vtkSphereWidget2
vtkPolyDataMapper * HandleMapper
represent and manipulate 3D points
Definition: vtkPoints.h:39