#include <vtkImplicitPlaneWidget.h>
This 3D widget defines an infinite plane that can be interactively placed in a scene. The widget is represented by a plane with a normal vector; the plane is contained by a bounding box, and where the plane intersects the bounding box the edges are shown (possibly tubed). The normal can be selected and moved to rotate the plane; the plane itself can be selected and translated in various directions. As the plane is moved, the implicit plane function and polygon (representing the plane cut against the bounding box) is updated.
To use this object, just invoke SetInteractor() with the argument of the method a vtkRenderWindowInteractor. You may also wish to invoke "PlaceWidget()" to initially position the widget. If the "i" key (for "interactor") is pressed, the vtkImplicitPlaneWidget will appear. (See superclass documentation for information about changing this behavior.) If you select the normal vector, the plane can be arbitrarily rotated. The plane can be translated along the normal by selecting the plane and moving it. The plane (the plane origin) can also be arbitrary moved by selecting the plane with the middle mouse button. The right mouse button can be used to uniformly scale the bounding box (moving "up" the box scales larger; moving "down" the box scales smaller). Events that occur outside of the widget (i.e., no part of the widget is picked) are propagated to any other registered obsevers (such as the interaction style). Turn off the widget by pressing the "i" key again (or invoke the Off() method).
The vtkImplicitPlaneWidget has several methods that can be used in conjunction with other VTK objects. The GetPolyData() method can be used to get a polygonal representation (the single polygon clipped by the bounding box). Typical usage of the widget is to make use of the StartInteractionEvent, InteractionEvent, and EndInteractionEvent events. The InteractionEvent is called on mouse motion; the other two events are called on button down and button up (either left or right button). (Note: there is also a PlaceWidgetEvent that is invoked when the widget is placed with PlaceWidget().)
Some additional features of this class include the ability to control the properties of the widget. You do this by setting property values on the normal vector (selected and unselected properties); the plane (selected and unselected properties); the outline (selected and unselected properties); and the edges. The edges may also be tubed or not.
Definition at line 94 of file vtkImplicitPlaneWidget.h.
Reimplemented from vtkPolyDataSourceWidget.
Definition at line 100 of file vtkImplicitPlaneWidget.h.
enum vtkImplicitPlaneWidget::WidgetState [protected] |
Definition at line 255 of file vtkImplicitPlaneWidget.h.
vtkImplicitPlaneWidget::vtkImplicitPlaneWidget | ( | ) | [protected] |
vtkImplicitPlaneWidget::~vtkImplicitPlaneWidget | ( | ) | [protected] |
static vtkImplicitPlaneWidget* vtkImplicitPlaneWidget::New | ( | ) | [static] |
Instantiate the object.
Reimplemented from vtkObject.
virtual const char* vtkImplicitPlaneWidget::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkPolyDataSourceWidget.
static int vtkImplicitPlaneWidget::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkPolyDataSourceWidget.
virtual int vtkImplicitPlaneWidget::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkPolyDataSourceWidget.
static vtkImplicitPlaneWidget* vtkImplicitPlaneWidget::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkPolyDataSourceWidget.
void vtkImplicitPlaneWidget::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkPolyDataSourceWidget.
virtual void vtkImplicitPlaneWidget::SetEnabled | ( | int | ) | [virtual] |
Methods that satisfy the superclass' API.
Reimplemented from vtkInteractorObserver.
virtual void vtkImplicitPlaneWidget::PlaceWidget | ( | double | bounds[6] | ) | [virtual] |
Methods that satisfy the superclass' API.
Implements vtkPolyDataSourceWidget.
void vtkImplicitPlaneWidget::PlaceWidget | ( | ) | [inline, virtual] |
Methods that satisfy the superclass' API.
Reimplemented from vtkPolyDataSourceWidget.
Definition at line 107 of file vtkImplicitPlaneWidget.h.
void vtkImplicitPlaneWidget::PlaceWidget | ( | double | xmin, | |
double | xmax, | |||
double | ymin, | |||
double | ymax, | |||
double | zmin, | |||
double | zmax | |||
) | [inline, virtual] |
Methods that satisfy the superclass' API.
Reimplemented from vtkPolyDataSourceWidget.
Definition at line 109 of file vtkImplicitPlaneWidget.h.
virtual void vtkImplicitPlaneWidget::SetOrigin | ( | double | x, | |
double | y, | |||
double | z | |||
) | [virtual] |
Get the origin of the plane.
virtual void vtkImplicitPlaneWidget::SetOrigin | ( | double | x[3] | ) | [virtual] |
Get the origin of the plane.
double* vtkImplicitPlaneWidget::GetOrigin | ( | ) |
Get the origin of the plane.
void vtkImplicitPlaneWidget::GetOrigin | ( | double | xyz[3] | ) |
Get the origin of the plane.
void vtkImplicitPlaneWidget::SetNormal | ( | double | x, | |
double | y, | |||
double | z | |||
) |
Get the normal to the plane.
void vtkImplicitPlaneWidget::SetNormal | ( | double | x[3] | ) |
Get the normal to the plane.
double* vtkImplicitPlaneWidget::GetNormal | ( | ) |
Get the normal to the plane.
void vtkImplicitPlaneWidget::GetNormal | ( | double | xyz[3] | ) |
Get the normal to the plane.
void vtkImplicitPlaneWidget::SetNormalToXAxis | ( | int | ) |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual int vtkImplicitPlaneWidget::GetNormalToXAxis | ( | ) | [virtual] |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual void vtkImplicitPlaneWidget::NormalToXAxisOn | ( | ) | [virtual] |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual void vtkImplicitPlaneWidget::NormalToXAxisOff | ( | ) | [virtual] |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
void vtkImplicitPlaneWidget::SetNormalToYAxis | ( | int | ) |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual int vtkImplicitPlaneWidget::GetNormalToYAxis | ( | ) | [virtual] |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual void vtkImplicitPlaneWidget::NormalToYAxisOn | ( | ) | [virtual] |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual void vtkImplicitPlaneWidget::NormalToYAxisOff | ( | ) | [virtual] |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
void vtkImplicitPlaneWidget::SetNormalToZAxis | ( | int | ) |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual int vtkImplicitPlaneWidget::GetNormalToZAxis | ( | ) | [virtual] |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual void vtkImplicitPlaneWidget::NormalToZAxisOn | ( | ) | [virtual] |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual void vtkImplicitPlaneWidget::NormalToZAxisOff | ( | ) | [virtual] |
Force the plane widget to be aligned with one of the x-y-z axes. If one axis is set on, the other two will be set off. Remember that when the state changes, a ModifiedEvent is invoked. This can be used to snap the plane to the axes if it is orginally not aligned.
virtual void vtkImplicitPlaneWidget::SetTubing | ( | int | ) | [virtual] |
Turn on/off tubing of the wire outline of the plane. The tube thickens the line by wrapping with a vtkTubeFilter.
virtual int vtkImplicitPlaneWidget::GetTubing | ( | ) | [virtual] |
Turn on/off tubing of the wire outline of the plane. The tube thickens the line by wrapping with a vtkTubeFilter.
virtual void vtkImplicitPlaneWidget::TubingOn | ( | ) | [virtual] |
Turn on/off tubing of the wire outline of the plane. The tube thickens the line by wrapping with a vtkTubeFilter.
virtual void vtkImplicitPlaneWidget::TubingOff | ( | ) | [virtual] |
Turn on/off tubing of the wire outline of the plane. The tube thickens the line by wrapping with a vtkTubeFilter.
void vtkImplicitPlaneWidget::SetDrawPlane | ( | int | plane | ) |
Enable/disable the drawing of the plane. In some cases the plane interferes with the object that it is operating on (i.e., the plane interferes with the cut surface it produces producing z-buffer artifacts.)
virtual int vtkImplicitPlaneWidget::GetDrawPlane | ( | ) | [virtual] |
Enable/disable the drawing of the plane. In some cases the plane interferes with the object that it is operating on (i.e., the plane interferes with the cut surface it produces producing z-buffer artifacts.)
virtual void vtkImplicitPlaneWidget::DrawPlaneOn | ( | ) | [virtual] |
Enable/disable the drawing of the plane. In some cases the plane interferes with the object that it is operating on (i.e., the plane interferes with the cut surface it produces producing z-buffer artifacts.)
virtual void vtkImplicitPlaneWidget::DrawPlaneOff | ( | ) | [virtual] |
Enable/disable the drawing of the plane. In some cases the plane interferes with the object that it is operating on (i.e., the plane interferes with the cut surface it produces producing z-buffer artifacts.)
virtual void vtkImplicitPlaneWidget::SetOutlineTranslation | ( | int | ) | [virtual] |
Turn on/off the ability to translate the bounding box by grabbing it with the left mouse button.
virtual int vtkImplicitPlaneWidget::GetOutlineTranslation | ( | ) | [virtual] |
Turn on/off the ability to translate the bounding box by grabbing it with the left mouse button.
virtual void vtkImplicitPlaneWidget::OutlineTranslationOn | ( | ) | [virtual] |
Turn on/off the ability to translate the bounding box by grabbing it with the left mouse button.
virtual void vtkImplicitPlaneWidget::OutlineTranslationOff | ( | ) | [virtual] |
Turn on/off the ability to translate the bounding box by grabbing it with the left mouse button.
virtual void vtkImplicitPlaneWidget::SetOutsideBounds | ( | int | ) | [virtual] |
Turn on/off the ability to move the widget outside of the input's bound
virtual int vtkImplicitPlaneWidget::GetOutsideBounds | ( | ) | [virtual] |
Turn on/off the ability to move the widget outside of the input's bound
virtual void vtkImplicitPlaneWidget::OutsideBoundsOn | ( | ) | [virtual] |
Turn on/off the ability to move the widget outside of the input's bound
virtual void vtkImplicitPlaneWidget::OutsideBoundsOff | ( | ) | [virtual] |
Turn on/off the ability to move the widget outside of the input's bound
virtual void vtkImplicitPlaneWidget::SetScaleEnabled | ( | int | ) | [virtual] |
Turn on/off the ability to scale with the mouse
virtual int vtkImplicitPlaneWidget::GetScaleEnabled | ( | ) | [virtual] |
Turn on/off the ability to scale with the mouse
virtual void vtkImplicitPlaneWidget::ScaleEnabledOn | ( | ) | [virtual] |
Turn on/off the ability to scale with the mouse
virtual void vtkImplicitPlaneWidget::ScaleEnabledOff | ( | ) | [virtual] |
Turn on/off the ability to scale with the mouse
virtual void vtkImplicitPlaneWidget::SetOriginTranslation | ( | int | ) | [virtual] |
Turn on/off the ability to translate the origin (sphere) with the left mouse button.
virtual int vtkImplicitPlaneWidget::GetOriginTranslation | ( | ) | [virtual] |
Turn on/off the ability to translate the origin (sphere) with the left mouse button.
virtual void vtkImplicitPlaneWidget::OriginTranslationOn | ( | ) | [virtual] |
Turn on/off the ability to translate the origin (sphere) with the left mouse button.
virtual void vtkImplicitPlaneWidget::OriginTranslationOff | ( | ) | [virtual] |
Turn on/off the ability to translate the origin (sphere) with the left mouse button.
virtual void vtkImplicitPlaneWidget::SetDiagonalRatio | ( | double | ) | [virtual] |
By default the arrow is 30% of the diagonal length. DiagonalRatio control this ratio in the interval [0-2]
virtual double vtkImplicitPlaneWidget::GetDiagonalRatio | ( | ) | [virtual] |
By default the arrow is 30% of the diagonal length. DiagonalRatio control this ratio in the interval [0-2]
void vtkImplicitPlaneWidget::GetPolyData | ( | vtkPolyData * | pd | ) |
Grab the polydata that defines the plane. The polydata contains a single polygon that is clipped by the bounding box.
vtkPolyDataAlgorithm* vtkImplicitPlaneWidget::GetPolyDataAlgorithm | ( | ) | [virtual] |
Satisfies superclass API. This returns a pointer to the underlying PolyData (which represents the plane).
Implements vtkPolyDataSourceWidget.
void vtkImplicitPlaneWidget::GetPlane | ( | vtkPlane * | plane | ) |
Get the implicit function for the plane. The user must provide the instance of the class vtkPlane. Note that vtkPlane is a subclass of vtkImplicitFunction, meaning that it can be used by a variety of filters to perform clipping, cutting, and selection of data.
void vtkImplicitPlaneWidget::UpdatePlacement | ( | ) | [virtual] |
Satisfies the superclass API. This will change the state of the widget to match changes that have been made to the underlying PolyDataSource
Implements vtkPolyDataSourceWidget.
virtual void vtkImplicitPlaneWidget::SizeHandles | ( | ) | [virtual] |
Control widget appearance
Reimplemented from vtk3DWidget.
virtual vtkProperty* vtkImplicitPlaneWidget::GetNormalProperty | ( | ) | [virtual] |
Get the properties on the normal (line and cone).
virtual vtkProperty* vtkImplicitPlaneWidget::GetSelectedNormalProperty | ( | ) | [virtual] |
Get the properties on the normal (line and cone).
virtual vtkProperty* vtkImplicitPlaneWidget::GetPlaneProperty | ( | ) | [virtual] |
Get the plane properties. The properties of the plane when selected and unselected can be manipulated.
virtual vtkProperty* vtkImplicitPlaneWidget::GetSelectedPlaneProperty | ( | ) | [virtual] |
Get the plane properties. The properties of the plane when selected and unselected can be manipulated.
virtual vtkProperty* vtkImplicitPlaneWidget::GetOutlineProperty | ( | ) | [virtual] |
Get the property of the outline.
virtual vtkProperty* vtkImplicitPlaneWidget::GetSelectedOutlineProperty | ( | ) | [virtual] |
Get the property of the outline.
virtual vtkProperty* vtkImplicitPlaneWidget::GetEdgesProperty | ( | ) | [virtual] |
Get the property of the intersection edges. (This property also applies to the edges when tubed.)
static void vtkImplicitPlaneWidget::ProcessEvents | ( | vtkObject * | object, | |
unsigned long | event, | |||
void * | clientdata, | |||
void * | calldata | |||
) | [static, protected] |
Handles the char widget activation event. Also handles the delete event.
Reimplemented from vtkInteractorObserver.
void vtkImplicitPlaneWidget::OnLeftButtonDown | ( | ) | [protected] |
void vtkImplicitPlaneWidget::OnLeftButtonUp | ( | ) | [protected] |
void vtkImplicitPlaneWidget::OnMiddleButtonDown | ( | ) | [protected] |
void vtkImplicitPlaneWidget::OnMiddleButtonUp | ( | ) | [protected] |
void vtkImplicitPlaneWidget::OnRightButtonDown | ( | ) | [protected] |
void vtkImplicitPlaneWidget::OnRightButtonUp | ( | ) | [protected] |
void vtkImplicitPlaneWidget::OnMouseMove | ( | ) | [protected] |
void vtkImplicitPlaneWidget::UpdateRepresentation | ( | ) | [protected] |
void vtkImplicitPlaneWidget::HighlightOutline | ( | int | highlight | ) | [protected] |
virtual void vtkImplicitPlaneWidget::HighlightPlane | ( | int | highlight | ) | [protected, virtual] |
void vtkImplicitPlaneWidget::HighlightNormal | ( | int | highlight | ) | [protected] |
void vtkImplicitPlaneWidget::ConstrainOrigin | ( | double | x[3] | ) | [protected] |
void vtkImplicitPlaneWidget::Rotate | ( | int | X, | |
int | Y, | |||
double * | p1, | |||
double * | p2, | |||
double * | vpn | |||
) | [protected] |
void vtkImplicitPlaneWidget::TranslatePlane | ( | double * | p1, | |
double * | p2 | |||
) | [protected] |
void vtkImplicitPlaneWidget::TranslateOutline | ( | double * | p1, | |
double * | p2 | |||
) | [protected] |
void vtkImplicitPlaneWidget::TranslateOrigin | ( | double * | p1, | |
double * | p2 | |||
) | [protected] |
void vtkImplicitPlaneWidget::Push | ( | double * | p1, | |
double * | p2 | |||
) | [protected] |
void vtkImplicitPlaneWidget::Scale | ( | double * | p1, | |
double * | p2, | |||
int | X, | |||
int | Y | |||
) | [protected] |
void vtkImplicitPlaneWidget::CreateDefaultProperties | ( | ) | [protected] |
void vtkImplicitPlaneWidget::GeneratePlane | ( | ) | [protected] |
int vtkImplicitPlaneWidget::State [protected] |
Definition at line 254 of file vtkImplicitPlaneWidget.h.
int vtkImplicitPlaneWidget::NormalToXAxis [protected] |
Definition at line 282 of file vtkImplicitPlaneWidget.h.
int vtkImplicitPlaneWidget::NormalToYAxis [protected] |
Definition at line 283 of file vtkImplicitPlaneWidget.h.
int vtkImplicitPlaneWidget::NormalToZAxis [protected] |
Definition at line 284 of file vtkImplicitPlaneWidget.h.
vtkPlane* vtkImplicitPlaneWidget::Plane [protected] |
Definition at line 288 of file vtkImplicitPlaneWidget.h.
vtkImageData* vtkImplicitPlaneWidget::Box [protected] |
Definition at line 291 of file vtkImplicitPlaneWidget.h.
vtkOutlineFilter* vtkImplicitPlaneWidget::Outline [protected] |
Definition at line 292 of file vtkImplicitPlaneWidget.h.
vtkPolyDataMapper* vtkImplicitPlaneWidget::OutlineMapper [protected] |
Definition at line 293 of file vtkImplicitPlaneWidget.h.
vtkActor* vtkImplicitPlaneWidget::OutlineActor [protected] |
Definition at line 294 of file vtkImplicitPlaneWidget.h.
int vtkImplicitPlaneWidget::OutlineTranslation [protected] |
Definition at line 296 of file vtkImplicitPlaneWidget.h.
int vtkImplicitPlaneWidget::ScaleEnabled [protected] |
Definition at line 297 of file vtkImplicitPlaneWidget.h.
int vtkImplicitPlaneWidget::OutsideBounds [protected] |
Definition at line 298 of file vtkImplicitPlaneWidget.h.
vtkCutter* vtkImplicitPlaneWidget::Cutter [protected] |
Definition at line 301 of file vtkImplicitPlaneWidget.h.
vtkPolyDataMapper* vtkImplicitPlaneWidget::CutMapper [protected] |
Definition at line 302 of file vtkImplicitPlaneWidget.h.
vtkActor* vtkImplicitPlaneWidget::CutActor [protected] |
Definition at line 303 of file vtkImplicitPlaneWidget.h.
int vtkImplicitPlaneWidget::DrawPlane [protected] |
Definition at line 304 of file vtkImplicitPlaneWidget.h.
vtkFeatureEdges* vtkImplicitPlaneWidget::Edges [protected] |
Definition at line 308 of file vtkImplicitPlaneWidget.h.
vtkTubeFilter* vtkImplicitPlaneWidget::EdgesTuber [protected] |
Definition at line 309 of file vtkImplicitPlaneWidget.h.
vtkPolyDataMapper* vtkImplicitPlaneWidget::EdgesMapper [protected] |
Definition at line 310 of file vtkImplicitPlaneWidget.h.
vtkActor* vtkImplicitPlaneWidget::EdgesActor [protected] |
Definition at line 311 of file vtkImplicitPlaneWidget.h.
int vtkImplicitPlaneWidget::Tubing [protected] |
Definition at line 312 of file vtkImplicitPlaneWidget.h.
double vtkImplicitPlaneWidget::DiagonalRatio [protected] |
Definition at line 315 of file vtkImplicitPlaneWidget.h.
vtkConeSource* vtkImplicitPlaneWidget::ConeSource [protected] |
Definition at line 318 of file vtkImplicitPlaneWidget.h.
vtkPolyDataMapper* vtkImplicitPlaneWidget::ConeMapper [protected] |
Definition at line 319 of file vtkImplicitPlaneWidget.h.
vtkActor* vtkImplicitPlaneWidget::ConeActor [protected] |
Definition at line 320 of file vtkImplicitPlaneWidget.h.
vtkLineSource* vtkImplicitPlaneWidget::LineSource [protected] |
Definition at line 324 of file vtkImplicitPlaneWidget.h.
vtkPolyDataMapper* vtkImplicitPlaneWidget::LineMapper [protected] |
Definition at line 325 of file vtkImplicitPlaneWidget.h.
vtkActor* vtkImplicitPlaneWidget::LineActor [protected] |
Definition at line 326 of file vtkImplicitPlaneWidget.h.
vtkConeSource* vtkImplicitPlaneWidget::ConeSource2 [protected] |
Definition at line 329 of file vtkImplicitPlaneWidget.h.
vtkPolyDataMapper* vtkImplicitPlaneWidget::ConeMapper2 [protected] |
Definition at line 330 of file vtkImplicitPlaneWidget.h.
vtkActor* vtkImplicitPlaneWidget::ConeActor2 [protected] |
Definition at line 331 of file vtkImplicitPlaneWidget.h.
vtkLineSource* vtkImplicitPlaneWidget::LineSource2 [protected] |
Definition at line 334 of file vtkImplicitPlaneWidget.h.
vtkPolyDataMapper* vtkImplicitPlaneWidget::LineMapper2 [protected] |
Definition at line 335 of file vtkImplicitPlaneWidget.h.
vtkActor* vtkImplicitPlaneWidget::LineActor2 [protected] |
Definition at line 336 of file vtkImplicitPlaneWidget.h.
vtkSphereSource* vtkImplicitPlaneWidget::Sphere [protected] |
Definition at line 339 of file vtkImplicitPlaneWidget.h.
vtkPolyDataMapper* vtkImplicitPlaneWidget::SphereMapper [protected] |
Definition at line 340 of file vtkImplicitPlaneWidget.h.
vtkActor* vtkImplicitPlaneWidget::SphereActor [protected] |
Definition at line 341 of file vtkImplicitPlaneWidget.h.
int vtkImplicitPlaneWidget::OriginTranslation [protected] |
Definition at line 342 of file vtkImplicitPlaneWidget.h.
vtkCellPicker* vtkImplicitPlaneWidget::Picker [protected] |
Definition at line 345 of file vtkImplicitPlaneWidget.h.
vtkTransform* vtkImplicitPlaneWidget::Transform [protected] |
Definition at line 348 of file vtkImplicitPlaneWidget.h.
vtkProperty* vtkImplicitPlaneWidget::NormalProperty [protected] |
Definition at line 361 of file vtkImplicitPlaneWidget.h.
Definition at line 362 of file vtkImplicitPlaneWidget.h.
vtkProperty* vtkImplicitPlaneWidget::PlaneProperty [protected] |
Definition at line 363 of file vtkImplicitPlaneWidget.h.
vtkProperty* vtkImplicitPlaneWidget::SelectedPlaneProperty [protected] |
Definition at line 364 of file vtkImplicitPlaneWidget.h.
vtkProperty* vtkImplicitPlaneWidget::OutlineProperty [protected] |
Definition at line 365 of file vtkImplicitPlaneWidget.h.
Definition at line 366 of file vtkImplicitPlaneWidget.h.
vtkProperty* vtkImplicitPlaneWidget::EdgesProperty [protected] |
Definition at line 367 of file vtkImplicitPlaneWidget.h.