VTK  9.1.0
vtkSphereWidget.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkSphereWidget.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=========================================================================*/
82#ifndef vtkSphereWidget_h
83#define vtkSphereWidget_h
84
85#include "vtk3DWidget.h"
86#include "vtkInteractionWidgetsModule.h" // For export macro
87#include "vtkSphereSource.h" // Needed for faster access to the sphere source
88
89class vtkActor;
91class vtkPoints;
92class vtkPolyData;
93class vtkSphereSource;
94class vtkSphere;
95class vtkCellPicker;
96class vtkProperty;
97
98#define VTK_SPHERE_OFF 0
99#define VTK_SPHERE_WIREFRAME 1
100#define VTK_SPHERE_SURFACE 2
101
102class VTKINTERACTIONWIDGETS_EXPORT vtkSphereWidget : public vtk3DWidget
103{
104public:
109
111 void PrintSelf(ostream& os, vtkIndent indent) override;
112
114
117 void SetEnabled(int) override;
118 void PlaceWidget(double bounds[6]) override;
119 void PlaceWidget() override { this->Superclass::PlaceWidget(); }
121 double xmin, double xmax, double ymin, double ymax, double zmin, double zmax) override
122 {
123 this->Superclass::PlaceWidget(xmin, xmax, ymin, ymax, zmin, zmax);
124 }
126
128
133 vtkSetClampMacro(Representation, int, VTK_SPHERE_OFF, VTK_SPHERE_SURFACE);
134 vtkGetMacro(Representation, int);
135 void SetRepresentationToOff() { this->SetRepresentation(VTK_SPHERE_OFF); }
136 void SetRepresentationToWireframe() { this->SetRepresentation(VTK_SPHERE_WIREFRAME); }
137 void SetRepresentationToSurface() { this->SetRepresentation(VTK_SPHERE_SURFACE); }
139
144 void SetThetaResolution(int r) { this->SphereSource->SetThetaResolution(r); }
145 int GetThetaResolution() { return this->SphereSource->GetThetaResolution(); }
146
151 void SetPhiResolution(int r) { this->SphereSource->SetPhiResolution(r); }
152 int GetPhiResolution() { return this->SphereSource->GetPhiResolution(); }
153
155
158 void SetRadius(double r)
159 {
160 if (r <= 0)
161 {
162 r = .00001;
163 }
164 this->SphereSource->SetRadius(r);
165 }
166 double GetRadius() { return this->SphereSource->GetRadius(); }
168
170
173 void SetCenter(double x, double y, double z) { this->SphereSource->SetCenter(x, y, z); }
174 void SetCenter(double x[3]) { this->SetCenter(x[0], x[1], x[2]); }
175 double* GetCenter() VTK_SIZEHINT(3) { return this->SphereSource->GetCenter(); }
176 void GetCenter(double xyz[3]) { this->SphereSource->GetCenter(xyz); }
178
180
184 vtkSetMacro(Translation, vtkTypeBool);
185 vtkGetMacro(Translation, vtkTypeBool);
186 vtkBooleanMacro(Translation, vtkTypeBool);
187 vtkSetMacro(Scale, vtkTypeBool);
188 vtkGetMacro(Scale, vtkTypeBool);
189 vtkBooleanMacro(Scale, vtkTypeBool);
191
193
199 vtkSetMacro(HandleVisibility, vtkTypeBool);
200 vtkGetMacro(HandleVisibility, vtkTypeBool);
201 vtkBooleanMacro(HandleVisibility, vtkTypeBool);
203
205
210 vtkSetVector3Macro(HandleDirection, double);
211 vtkGetVector3Macro(HandleDirection, double);
213
215
218 vtkGetVector3Macro(HandlePosition, double);
220
229
236 void GetSphere(vtkSphere* sphere);
237
239
243 vtkGetObjectMacro(SphereProperty, vtkProperty);
244 vtkGetObjectMacro(SelectedSphereProperty, vtkProperty);
246
248
253 vtkGetObjectMacro(HandleProperty, vtkProperty);
254 vtkGetObjectMacro(SelectedHandleProperty, vtkProperty);
256
257protected:
260
261 // Manage the state of the widget
262 int State;
264 {
265 Start = 0,
269 Outside
270 };
271
272 // handles the events
273 static void ProcessEvents(
274 vtkObject* object, unsigned long event, void* clientdata, void* calldata);
275
276 // ProcessEvents() dispatches to these methods.
282
283 // the sphere
287 void HighlightSphere(int highlight);
289
290 // The representation of the sphere
292
293 // Do the picking
295
296 // Register internal Pickers within PickingManager
297 void RegisterPickers() override;
298
299 // Methods to manipulate the sphere widget
302 void Translate(double* p1, double* p2);
303 void ScaleSphere(double* p1, double* p2, int X, int Y);
304 void MoveHandle(double* p1, double* p2, int X, int Y);
305 void PlaceHandle(double* center, double radius);
306
307 // Properties used to control the appearance of selected objects and
308 // the manipulator in general.
314
315 // Managing the handle
321 double HandleDirection[3];
322 double HandlePosition[3];
323 void SizeHandles() override;
324
325private:
326 vtkSphereWidget(const vtkSphereWidget&) = delete;
327 void operator=(const vtkSphereWidget&) = delete;
328};
329
330#endif
an abstract superclass for 3D widgets
Definition: vtk3DWidget.h:68
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:155
ray-cast cell picker for all kinds of Prop3Ds
Definition: vtkCellPicker.h:96
a simple class to control print indentation
Definition: vtkIndent.h:113
abstract base class for most VTK objects
Definition: vtkObject.h:73
represent and manipulate 3D points
Definition: vtkPoints.h:143
map vtkPolyData to graphics primitives
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:195
represent surface properties of a geometric object
Definition: vtkProperty.h:171
create a polygonal sphere centered at the origin
3D widget for manipulating a sphere
double * GetCenter()
Set/Get the center of the sphere.
vtkCellPicker * Picker
void GetCenter(double xyz[3])
Set/Get the center of the sphere.
~vtkSphereWidget() override
void OnRightButtonUp()
vtkProperty * SelectedSphereProperty
vtkTypeBool Scale
void PlaceWidget(double xmin, double xmax, double ymin, double ymax, double zmin, double zmax) override
Methods that satisfy the superclass' API.
void SizeHandles() override
static void ProcessEvents(vtkObject *object, unsigned long event, void *clientdata, void *calldata)
void SelectRepresentation()
vtkPolyDataMapper * HandleMapper
void SetCenter(double x[3])
Set/Get the center of the sphere.
double GetRadius()
Set/Get the radius of sphere.
void HighlightHandle(int)
void SetCenter(double x, double y, double z)
Set/Get the center of the sphere.
void CreateDefaultProperties()
void SetEnabled(int) override
Methods that satisfy the superclass' API.
void GetPolyData(vtkPolyData *pd)
Grab the polydata (including points) that defines the sphere.
void SetRadius(double r)
Set/Get the radius of sphere.
vtkSphereSource * HandleSource
void PlaceWidget(double bounds[6]) override
Methods that satisfy the superclass' API.
vtkTypeBool HandleVisibility
static vtkSphereWidget * New()
Instantiate the object.
void SetThetaResolution(int r)
Set/Get the resolution of the sphere in the Theta direction.
void RegisterPickers() override
Register internal Pickers in the Picking Manager.
void OnLeftButtonUp()
vtkPolyDataMapper * SphereMapper
vtkProperty * SphereProperty
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void OnLeftButtonDown()
void Translate(double *p1, double *p2)
vtkActor * HandleActor
void HighlightSphere(int highlight)
void MoveHandle(double *p1, double *p2, int X, int Y)
vtkTypeBool Translation
void SetRepresentationToSurface()
Set the representation of the sphere.
void SetPhiResolution(int r)
Set/Get the resolution of the sphere in the Phi direction.
vtkProperty * HandleProperty
void GetSphere(vtkSphere *sphere)
Get the spherical implicit function defined by this widget.
vtkActor * SphereActor
void SetRepresentationToWireframe()
Set the representation of the sphere.
vtkSphereSource * SphereSource
void SetRepresentationToOff()
Set the representation of the sphere.
void OnRightButtonDown()
void PlaceWidget() override
Methods that satisfy the superclass' API.
void ScaleSphere(double *p1, double *p2, int X, int Y)
vtkProperty * SelectedHandleProperty
void PlaceHandle(double *center, double radius)
implicit function for a sphere
Definition: vtkSphere.h:141
@ center
Definition: vtkX3D.h:236
@ radius
Definition: vtkX3D.h:258
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_SPHERE_SURFACE
#define VTK_SPHERE_OFF
#define VTK_SPHERE_WIREFRAME
#define VTK_SIZEHINT(...)