ELF>pQ@@"!  UH@dH%(HD$81HHt$HD$HFHD$$D$ t0H|$1HT$8dH+%(uhH@]@HT$H|$H5|$HtHt+HH5HPtHuH1Huff.fUSHHdH%(HD$81HHt$HD$HFHD$$D$ HD$t6H|$1HT$8dH+%(HH[]DHt$H|$tHl$H=HtHH=uHuHc@HH=tHH=tHATUSH@fnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uYHD$Ho(Ht!\$ +\$$tJH|$1HT$8dH+%(H@[]A\HHuːHt$H|$tD$$Ld$u`HELH@H;H=tLH=u-HaHcVf.LLH=tLH=tLfDHЉfUH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u=HG(HtL$9L$t:H111HT$(dH+%(u7H0]fDHHuӐHHuHSH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u=H(HtD$9D$t:H111HT$(dH+%(uUH0[fDHHuӐtHuHcfHHH;tЉfUH@fnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uLHo(Ht!D$ +D$$tFH|$1HT$8dH+%(u_H@]f.HHuϐH5HT$H|$|$HtHHuHHff.ATH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$uDH(HtD$9D$tIH11E1HD$(dH+%(H0LA\@HHufHHRxH;IMtoI$H5LPtZHuLIHoHbL1HHP@L8fE1H"DIjfAVH SHAUH5ATL%ULSt[L]A\A]A^HL5HLk0Hc{HHtH3HLHmt$HL9uL[L]A\A]A^HfDATIUHHt HH5LHtHmtH]A\HH]A\H8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u>H(HtD$9D$t;H111HT$(dH+%(uLH8HHuҐu$HHuHH@ff.H8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u>H(HtD$9D$t;H111HT$(dH+%(uLH8HHuҐu$HHuHH@ff.UH@fnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uLHo(Ht!D$ +D$$tFH|$1HT$8dH+%(urH@]f.HHuϐHt$ H|$tD$$t$ u)HEHpHuHHDHfH8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u>H(HtD$9D$t;H111HT$(dH+%(uLH8HHuҐu$HHuHH@ff.UH@fnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uLHo(Ht!D$ +D$$tFH|$1HT$8dH+%(urH@]f.HHuϐHt$ H|$tD$$t$ u)HEHHuHHDHSafeDownCastvtkObjectBasevtkDistanceWidgetIsTypeOfIsAGetDistanceRepresentationGetWidgetStateSetRepresentationvtkDistanceRepresentationNewInstanceSetWidgetStateToManipulateSetWidgetStateToStartSetProcessEventsCreateDefaultRepresentationSetEnabledStartDefineManipulatevtkAbstractWidgetvtkInteractorObservervtkObjectUH=Hu]ÐHH=tHH=tHH=tH]vtkDistanceWidget - measure the distance between two points Superclass: vtkAbstractWidget The vtkDistanceWidget is used to measure the distance between two points. The two end points can be positioned independently, and when they are released, a special PlacePointEvent is invoked so that special operations may be take to reposition the point (snap to grid, etc.) The widget has two different modes of interaction: when initially defined (i.e., placing the two points) and then a manipulate mode (adjusting the position of the two points). To use this widget, specify an instance of vtkDistanceWidget and a representation (a subclass of vtkDistanceRepresentation). The widget is implemented using two instances of vtkHandleWidget which are used to position the end points of the line. The representations for these two handle widgets are provided by the vtkDistanceRepresentation. @par Event Bindings: By default, the widget responds to the following VTK events (i.e., it watches the vtkRenderWindowInteractor for these events): LeftButtonPressEvent - add a point or select a handle MouseMoveEvent - position the second point or move a handle LeftButtonReleaseEvent - release the handle @par Event Bindings: Note that the event bindings described above can be changed using this class's vtkWidgetEventTranslator. This class translates VTK events into the vtkDistanceWidget's widget events: vtkWidgetEvent::AddPoint -- add one point; depending on the state it may the first or second point added. Or, if near a handle, select the handle. vtkWidgetEvent::Move -- move the second point or handle depending on the state. vtkWidgetEvent::EndSelect -- the handle manipulation process has completed. @par Event Bindings: This widget invokes the following VTK events on itself (which observers can listen for): vtkCommand::StartInteractionEvent (beginning to interact) vtkCommand::EndInteractionEvent (completing interaction) vtkCommand::InteractionEvent (moving after selecting something) vtkCommand::PlacePointEvent (after point is positioned; call data includes handle id (0,1)) @sa vtkHandleWidget vtkInteractionWidgetsPython.vtkDistanceWidgetV.IsTypeOf(string) -> int C++: static vtkTypeBool IsTypeOf(const char *type) Standard methods for a VTK class. V.IsA(string) -> int C++: vtkTypeBool IsA(const char *type) override; Standard methods for a VTK class. V.SafeDownCast(vtkObjectBase) -> vtkDistanceWidget C++: static vtkDistanceWidget *SafeDownCast(vtkObjectBase *o) Standard methods for a VTK class. V.NewInstance() -> vtkDistanceWidget C++: vtkDistanceWidget *NewInstance() Standard methods for a VTK class. V.SetEnabled(int) C++: void SetEnabled(int) override; The method for activating and deactivating this widget. This method must be overridden because it is a composite widget and does more than its superclasses' vtkAbstractWidget::SetEnabled() method. V.SetRepresentation(vtkDistanceRepresentation) C++: void SetRepresentation(vtkDistanceRepresentation *r) Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene. Note that the representation is a subclass of vtkProp so it can be added to the renderer independent of the widget. V.GetDistanceRepresentation() -> vtkDistanceRepresentation C++: vtkDistanceRepresentation *GetDistanceRepresentation() Return the representation as a vtkDistanceRepresentation. V.CreateDefaultRepresentation() C++: void CreateDefaultRepresentation() override; Create the default widget representation if one is not set. V.SetProcessEvents(int) C++: void SetProcessEvents(int) override; Methods to change the whether the widget responds to interaction. Overridden to pass the state to component widgets. V.SetWidgetStateToStart() C++: virtual void SetWidgetStateToStart() Set the state of the widget. If the state is set to "Manipulate" then it is assumed that the widget and its representation will be initialized programmatically and is not interactively placed. Initially the widget state is set to "Start" which means nothing will appear and the user must interactively place the widget with repeated mouse selections. Set the state to "Start" if you want interactive placement. Generally state changes must be followed by a Render() for things to visually take effect. V.SetWidgetStateToManipulate() C++: virtual void SetWidgetStateToManipulate() Set the state of the widget. If the state is set to "Manipulate" then it is assumed that the widget and its representation will be initialized programmatically and is not interactively placed. Initially the widget state is set to "Start" which means nothing will appear and the user must interactively place the widget with repeated mouse selections. Set the state to "Start" if you want interactive placement. Generally state changes must be followed by a Render() for things to visually take effect. V.GetWidgetState() -> int C++: virtual int GetWidgetState() Return the current widget state. HHHDGCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0GNUzRx  0 D XEDPa AE |bEY B }(EAD`n AAF 0FAA D`  AABH ED@ AG ED@ AG DEDP AK hgFD@ EE LFPI H(D0O (D BBBD V (D BBBH 0OFDD n ABA DDB$H@ I @H@ I \EDP AK H@ I $EDP AK    % WP!0X0g0 ` p  ` B G L Q -V [ ` (e 6j :o Tt cz u      " " Dp" b0@u !>Mj`O;f4I^q_ZL29PyvtkDistanceWidget_StaticNewv_ZL32PyvtkDistanceWidget_SafeDownCastP7_objectS0__ZL28PyvtkDistanceWidget_IsTypeOfP7_objectS0__ZL23PyvtkDistanceWidget_IsAP7_objectS0__ZL45PyvtkDistanceWidget_GetDistanceRepresentationP7_objectS0__ZL34PyvtkDistanceWidget_GetWidgetStateP7_objectS0__ZL37PyvtkDistanceWidget_SetRepresentationP7_objectS0__ZL31PyvtkDistanceWidget_NewInstanceP7_objectS0__ZL27PyvtkDistanceWidget_Methods_ZL24PyvtkDistanceWidget_Type_ZZ28PyvtkDistanceWidget_ClassNewE9constants_GLOBAL__sub_I_vtkDistanceWidgetPython.cxx_ZL46PyvtkDistanceWidget_SetWidgetStateToManipulateP7_objectS0__ZL41PyvtkDistanceWidget_SetWidgetStateToStartP7_objectS0__ZL36PyvtkDistanceWidget_SetProcessEventsP7_objectS0__ZL47PyvtkDistanceWidget_CreateDefaultRepresentationP7_objectS0__ZL30PyvtkDistanceWidget_SetEnabledP7_objectS0_.LC0.LC1.LC2.LC6.LC3.LC4.LC5.LC7.LC8.LC9.LC10.LC11.LC12.LC14.LC15.LC16.LC17.LC18.LC13_ZN17vtkDistanceWidget14GetWidgetStateEv_ZN17vtkDistanceWidget3NewEv_ZNK17vtkDistanceWidget19NewInstanceInternalEv_ZN13vtkPythonArgs13ArgCountErrorEii_ZN13vtkPythonArgs17GetArgAsVTKObjectEPKcRbPyErr_Occurred_ZN13vtkPythonUtil20GetObjectFromPointerEP13vtkObjectBase__stack_chk_fail_ZN17vtkDistanceWidget3IsAEPKcstrcmp_ZN13vtkObjectBase8IsTypeOfEPKc_ZN13vtkPythonArgs8GetValueERPcPyLong_FromLong_ZN13vtkPythonArgs19GetSelfFromFirstArgEP7_objectS1__GLOBAL_OFFSET_TABLE__ZN17vtkAbstractWidget23SetWidgetRepresentationEP23vtkWidgetRepresentation_Py_NoneStructPyVTKObject_CheckPyVTKObject_GetObjectPyVTKObject_SetFlagPyvtkDistanceWidget_ClassNewPyVTKClass_AddPyvtkAbstractWidget_ClassNewPyDict_SetItemStringPyType_Ready_Py_DeallocPyVTKAddFile_vtkDistanceWidget_ZN17vtkDistanceWidget26SetWidgetStateToManipulateEv_ZN17vtkDistanceWidget21SetWidgetStateToStartEv_ZN13vtkPythonArgs8GetValueERi_ZN17vtkDistanceWidget16SetProcessEventsEi_ZN17vtkDistanceWidget27CreateDefaultRepresentationEv_ZN17vtkDistanceWidget10SetEnabledEiPyType_TypePyVTKObject_DeletePyVTKObject_ReprPyVTKObject_StringPyObject_GenericGetAttrPyObject_GenericSetAttrPyVTKObject_AsBufferPyVTKObject_TraversePyVTKObject_GetSetPyVTKObject_NewPyObject_GC_Del,`345657  J3};9!95<"9#9:7$$3=;*89!95-<N"S9a#f9r:7%3!=85E6L7q&3=5<*0*7Q'3=(4? 5*@ 7R)3=*215$68AHBeCt57EF <!G9HTIoD~G* 3A =^ 5j *@y K 7 + 3! => 5J *@Y L` 7 , 3 =+ MM 5Y *@l Ns 7 - 3 =. 5: *@I OP 7 . 3 = M= 5I *@\ Pc 71I19&!+99">9L#Q9^:/  Q0RXSTUVWXY8Z@[- 6(8X @HX `h0x` `  c0 :   p X ( 8@HXX`ThPx 4H\$PH0l0`(D `p  ` .symtab.strtab.shstrtab.rela.text.data.bss.text._ZN17vtkDistanceWidget14GetWidgetStateEv.rela.text._ZNK17vtkDistanceWidget19NewInstanceInternalEv.rodata.str1.1.rodata._ZN17vtkDistanceWidget3IsAEPKc.str1.1.rela.text._ZN17vtkDistanceWidget3IsAEPKc.rodata.str1.8.rela.text.startup.rela.init_array.rela.data.rel.ro.local.rela.data.rel.rela.data.rel.local.comment.note.GNU-stack.note.gnu.property.rela.eh_frame.group@0H 2T 8 `g @;H & , 1 e `@G 2 22@b@H 2#@H0(##@I9#0 4@(IHQ $ L@pI `% [@J`p0`',y'' '@Mp* 0 3O