X 8mx8m__text__TEXT&xo__cstring__TEXT&!1j)__data__DATA XPZ|__compact_unwind__LDp`bX-__eh_frame__TEXTf(h h2  kpt P,,0;UHAVSH=&1HHH=H18IH uHL[A^]DUHAWAVATSH=H5H&H ,HL5HHH4HH5F&LHtH u H=H=&11HL%H=H1A$8IH uHMtH5%LLIuLH=%1HH=H1A$8IH uHMtH5%LLIuLH=H[A\A^A_]f.UH]fDUHAVSIH5%HLt H t01HtH}111-HHHuHHxHHH [A^]DUHAVSH HuH2HEDvDuHG]]y HHt#H(HtD9uEt%Ht*11H}111 HHuHcHHH [A^]@UHAWAVSHxHHHEHxHY2HED~D}HG]]yHH&Lw(MA)HxAHuHxHuHEHE(E)EHcEIH@H4HuHHLHMHDHEfHnMf.u&z$fHnMf.uzfHnMf.u{$HuHxHUHuHH1H H H;MuHx[A^A_]E1MUHAWAVSH(HuHm1HED~D}HG]ԉ]؅yHHLw(MtwA)Au[HuH}t]uLHHuEHtMHIHHHu'HLH}1H([A^A_]HHfUHSPHH=vHtZH=0HtGH=0Ht4H=0Ht!H=0HtHH[]H[](i)vtkLabeledDataMapperCoordinatesWORLDDISPLAYVTK_LABEL_IDSVTK_LABEL_SCALARSVTK_LABEL_VECTORSVTK_LABEL_NORMALSVTK_LABEL_TCOORDSVTK_LABEL_TENSORSVTK_LABEL_FIELD_DATAvtkRenderingLabelPython.vtkLabeledDataMapper.CoordinatesvtkRenderingLabelPython.vtkLabeledDataMappervtkLabeledDataMapper - draw text labels at dataset points Superclass: vtkMapper2D vtkLabeledDataMapper is a mapper that renders text at dataset points. Various items can be labeled including point ids, scalars, vectors, normals, texture coordinates, tensors, and field data components. The format with which the label is drawn is specified using a printf style format string. The font attributes of the text can be set through the vtkTextProperty associated to this mapper. By default, all the components of multi-component data such as vectors, normals, texture coordinates, tensors, and multi-component scalars are labeled. However, you can specify a single component if you prefer. (Note: the label format specifies the format to use for a single component. The label is creating by looping over all components and using the label format to render each component.) @warning Use this filter in combination with vtkSelectVisiblePoints if you want to label only points that are visible. If you want to label cells rather than points, use the filter vtkCellCenters to generate points at the center of the cells. Also, you can use the class vtkIdFilter to generate ids as scalars or field data, which can then be labeled. @sa vtkMapper2D vtkActor2D vtkTextMapper vtkTextProperty vtkSelectVisiblePoints vtkIdFilter vtkCellCenters IsTypeOfV.IsTypeOf(string) -> int C++: static vtkTypeBool IsTypeOf(const char *type) 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 vtkTypeMacro found in vtkSetGet.h. IsAV.IsA(string) -> int C++: vtkTypeBool IsA(const char *type) override; 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 vtkTypeMacro found in vtkSetGet.h. SafeDownCastV.SafeDownCast(vtkObjectBase) -> vtkLabeledDataMapper C++: static vtkLabeledDataMapper *SafeDownCast(vtkObjectBase *o) NewInstanceV.NewInstance() -> vtkLabeledDataMapper C++: vtkLabeledDataMapper *NewInstance() SetLabelFormatV.SetLabelFormat(string) C++: virtual void SetLabelFormat(const char *_arg) Set/Get the format with which to print the labels. This should be a printf-style format string. * By default, the mapper will try to print each component of the * tuple using a sane format: %d for integers, %f for floats, %g for * doubles, %ld for longs, et cetera. If you need a different * format, set it here. You can do things like limit the number of * significant digits, add prefixes/suffixes, basically anything * that printf can do. If you only want to print one component of a * vector, see the ivar LabeledComponent. GetLabelFormatV.GetLabelFormat() -> string C++: virtual char *GetLabelFormat() Set/Get the format with which to print the labels. This should be a printf-style format string. * By default, the mapper will try to print each component of the * tuple using a sane format: %d for integers, %f for floats, %g for * doubles, %ld for longs, et cetera. If you need a different * format, set it here. You can do things like limit the number of * significant digits, add prefixes/suffixes, basically anything * that printf can do. If you only want to print one component of a * vector, see the ivar LabeledComponent. SetLabeledComponentV.SetLabeledComponent(int) C++: virtual void SetLabeledComponent(int _arg) Set/Get the component number to label if the data to print has more than one component. For example, all the components of scalars, vectors, normals, etc. are labeled by default (LabeledComponent=(-1)). However, if this ivar is nonnegative, then only the one component specified is labeled. GetLabeledComponentV.GetLabeledComponent() -> int C++: virtual int GetLabeledComponent() Set/Get the component number to label if the data to print has more than one component. For example, all the components of scalars, vectors, normals, etc. are labeled by default (LabeledComponent=(-1)). However, if this ivar is nonnegative, then only the one component specified is labeled. SetFieldDataArrayV.SetFieldDataArray(int) C++: void SetFieldDataArray(int arrayIndex) Set/Get the field data array to label. This instance variable is only applicable if field data is labeled. This will clear FieldDataName when set. GetFieldDataArrayV.GetFieldDataArray() -> int C++: virtual int GetFieldDataArray() Set/Get the field data array to label. This instance variable is only applicable if field data is labeled. This will clear FieldDataName when set. SetFieldDataNameV.SetFieldDataName(string) C++: void SetFieldDataName(const char *arrayName) Set/Get the name of the field data array to label. This instance variable is only applicable if field data is labeled. This will override FieldDataArray when set. GetFieldDataNameV.GetFieldDataName() -> string C++: virtual char *GetFieldDataName() Set/Get the name of the field data array to label. This instance variable is only applicable if field data is labeled. This will override FieldDataArray when set. SetInputDataV.SetInputData(vtkDataObject) C++: virtual void SetInputData(vtkDataObject *) Set the input dataset to the mapper. This mapper handles any type of data. GetInputV.GetInput() -> vtkDataSet C++: vtkDataSet *GetInput() Use GetInputDataObject() to get the input data object for composite datasets. SetLabelModeV.SetLabelMode(int) C++: virtual void SetLabelMode(int _arg) Specify which data to plot: IDs, scalars, vectors, normals, texture coords, tensors, or field data. If the data has more than one component, use the method SetLabeledComponent to control which components to plot. The default is VTK_LABEL_IDS. GetLabelModeV.GetLabelMode() -> int C++: virtual int GetLabelMode() Specify which data to plot: IDs, scalars, vectors, normals, texture coords, tensors, or field data. If the data has more than one component, use the method SetLabeledComponent to control which components to plot. The default is VTK_LABEL_IDS. SetLabelModeToLabelIdsV.SetLabelModeToLabelIds() C++: void SetLabelModeToLabelIds() Specify which data to plot: IDs, scalars, vectors, normals, texture coords, tensors, or field data. If the data has more than one component, use the method SetLabeledComponent to control which components to plot. The default is VTK_LABEL_IDS. SetLabelModeToLabelScalarsV.SetLabelModeToLabelScalars() C++: void SetLabelModeToLabelScalars() Specify which data to plot: IDs, scalars, vectors, normals, texture coords, tensors, or field data. If the data has more than one component, use the method SetLabeledComponent to control which components to plot. The default is VTK_LABEL_IDS. SetLabelModeToLabelVectorsV.SetLabelModeToLabelVectors() C++: void SetLabelModeToLabelVectors() Specify which data to plot: IDs, scalars, vectors, normals, texture coords, tensors, or field data. If the data has more than one component, use the method SetLabeledComponent to control which components to plot. The default is VTK_LABEL_IDS. SetLabelModeToLabelNormalsV.SetLabelModeToLabelNormals() C++: void SetLabelModeToLabelNormals() Specify which data to plot: IDs, scalars, vectors, normals, texture coords, tensors, or field data. If the data has more than one component, use the method SetLabeledComponent to control which components to plot. The default is VTK_LABEL_IDS. SetLabelModeToLabelTCoordsV.SetLabelModeToLabelTCoords() C++: void SetLabelModeToLabelTCoords() Specify which data to plot: IDs, scalars, vectors, normals, texture coords, tensors, or field data. If the data has more than one component, use the method SetLabeledComponent to control which components to plot. The default is VTK_LABEL_IDS. SetLabelModeToLabelTensorsV.SetLabelModeToLabelTensors() C++: void SetLabelModeToLabelTensors() Specify which data to plot: IDs, scalars, vectors, normals, texture coords, tensors, or field data. If the data has more than one component, use the method SetLabeledComponent to control which components to plot. The default is VTK_LABEL_IDS. SetLabelModeToLabelFieldDataV.SetLabelModeToLabelFieldData() C++: void SetLabelModeToLabelFieldData() Specify which data to plot: IDs, scalars, vectors, normals, texture coords, tensors, or field data. If the data has more than one component, use the method SetLabeledComponent to control which components to plot. The default is VTK_LABEL_IDS. SetLabelTextPropertyV.SetLabelTextProperty(vtkTextProperty) C++: virtual void SetLabelTextProperty(vtkTextProperty *p) V.SetLabelTextProperty(vtkTextProperty, int) C++: virtual void SetLabelTextProperty(vtkTextProperty *p, int type) Set/Get the text property. If an integer argument is provided, you may provide different text properties for different label types. The type is determined by an optional type input array. GetLabelTextPropertyV.GetLabelTextProperty() -> vtkTextProperty C++: virtual vtkTextProperty *GetLabelTextProperty() V.GetLabelTextProperty(int) -> vtkTextProperty C++: virtual vtkTextProperty *GetLabelTextProperty(int type) Set/Get the text property. If an integer argument is provided, you may provide different text properties for different label types. The type is determined by an optional type input array. RenderOpaqueGeometryV.RenderOpaqueGeometry(vtkViewport, vtkActor2D) C++: void RenderOpaqueGeometry(vtkViewport *viewport, vtkActor2D *actor) override; Draw the text to the screen at each input point. RenderOverlayV.RenderOverlay(vtkViewport, vtkActor2D) C++: void RenderOverlay(vtkViewport *viewport, vtkActor2D *actor) override; Draw the text to the screen at each input point. ReleaseGraphicsResourcesV.ReleaseGraphicsResources(vtkWindow) C++: void ReleaseGraphicsResources(vtkWindow *) override; Release any graphics resources that are being consumed by this actor. GetTransformV.GetTransform() -> vtkTransform C++: virtual vtkTransform *GetTransform() The transform to apply to the labels before mapping to 2D. SetTransformV.SetTransform(vtkTransform) C++: void SetTransform(vtkTransform *t) The transform to apply to the labels before mapping to 2D. GetCoordinateSystemV.GetCoordinateSystem() -> int C++: virtual int GetCoordinateSystem() Set/get the coordinate system used for output labels. The output datasets may have point coordinates reported in the world space or display space. SetCoordinateSystemV.SetCoordinateSystem(int) C++: virtual void SetCoordinateSystem(int _arg) Set/get the coordinate system used for output labels. The output datasets may have point coordinates reported in the world space or display space. GetCoordinateSystemMinValueV.GetCoordinateSystemMinValue() -> int C++: virtual int GetCoordinateSystemMinValue() Set/get the coordinate system used for output labels. The output datasets may have point coordinates reported in the world space or display space. GetCoordinateSystemMaxValueV.GetCoordinateSystemMaxValue() -> int C++: virtual int GetCoordinateSystemMaxValue() Set/get the coordinate system used for output labels. The output datasets may have point coordinates reported in the world space or display space. CoordinateSystemWorldV.CoordinateSystemWorld() C++: void CoordinateSystemWorld() Set/get the coordinate system used for output labels. The output datasets may have point coordinates reported in the world space or display space. CoordinateSystemDisplayV.CoordinateSystemDisplay() C++: void CoordinateSystemDisplay() Set/get the coordinate system used for output labels. The output datasets may have point coordinates reported in the world space or display space. GetMTimeV.GetMTime() -> int C++: vtkMTimeType GetMTime() override; Return the modified time for this object. GetNumberOfLabelsV.GetNumberOfLabels() -> int C++: virtual int GetNumberOfLabels() Return the number of labels rendered by the mapper. GetLabelPositionV.GetLabelPosition(int, [float, float, float]) C++: void GetLabelPosition(int label, double pos[3]) Return the position of the requested label. GetLabelTextV.GetLabelText(int) -> string C++: const char *GetLabelText(int label) Return the text for the requested label. vtkMapper2DvtkAbstractMappervtkAlgorithmvtkObjectvtkObjectBasevtkDataObjectvtkTextPropertyvtkViewportvtkActor2DvtkWindowvtkTransform' 'HD(?-H-I.M.B/O///'060225566 888 999::;;<<=)=[>h>??@@5BPBCCDD7FRFGGHHJJ5LJLMMMMNNO!OOOPPQQRRSS{TThUqUUUbVsVWWK!Pu  !@a0!!a a a !P a ! aapaP!a!! !!`!!!@!!:!aaa!Pa!a!p a0!!!!p"!0#!#a%ap&zRx $ЙKAC C,DuAC G$tH AC $0AC C$AC E$@AC I$AC G$<AC G$dhAC I$0AC I$AC I$AC G$8AC I$,AC G$THAC I$|AC I$AC I$pAC G$AC I$AC G$D(AC G$lAC G$AC G$AC G$AC G$ AC G$4AC G$\pAC G$:AC G$AC I$دAC I$AC I$$hAC G$LAC I$tAC G$AC I$AC G$pAC I$AC G$<AC G$dAC G$AC G$AC I$AC I$XAC B&M-&i-&&i-&&i-&&i-&&i-|&^&L=J&O-5&0-*&2- &=-&j-&3-%X-%T-%Q-%t%g-M%h=D%O-0%L=$%3-%U-%3-$R-e$T-/$Q-$#h=#4-#3-#O-#3-l#Q-B##5-#4-"3-"O-"3-"d-"Q-"V"L=M"O-5"3- "Q-!!O-!L=!3-l!Q-B! !4- 3- O- 3- Q- V 4-I 3-6 O- 3-Q-L=3-O-e3-%T-Q-4-3-O-r3-LQ-"O-L=3-Z-P-Q-d;W-.3-O-3-Q-L=3-bO-H3-Ca-,P-Q-L=3-O-h3-c[-IP-<,P-Q-L=3-O-h3-c_-IP-<,P-Q-W-3-uO-dN-]T^-?T-!Q- Q-mL=a3-=3-'N- 3- `-T-P-Q-3-]P-P0Q-L=O-3-|Q-R&L=O-3-Q-L=}O-e3-<Q-L=O-3-Q-rFL==O-%3-Q-L=O-3-\Q-2O-L=3-Q-i4-\3-JO-23- Q-L=3-O-3-UT-.Q-W-O-3-c-Q-b?L=33-O-3-Y-P-Q-`L=T0-I2-<=-.j-3-O-3-Q-eL=NO-23--\-S- Q-  4- 3-z O-b 3-< Q-  O- L= 3- ]- T- Q-d 9 4-, 3- O- 3- Q-  L= 3-m O-S 3-% T- Q-  L= 0- 2- =-~ j-l 3-M O-5 3- Q-  L= 3-P3-,O-f-j-e-i-YS-Q-F-B-@-W-3-|O-f3-RQ-W-3-O-3-mP-`B4-3-O-3-/-S-~Q-T3O-4-3- /-S-4-K-K-1-~o4-`1-UF4-74--K-#K-1- 4-1-4-4-K-K-1-4-z1-o`4-Q4-JK-E<K-/1-$4- 1---b-;-K-1-K-dZI-NGK-:1-/#K-6=I-K-1-V-;-J-~x>-sle^?K-$6=I- (+*)('x&phX%PH8$0(#"! xphXPH80(xphXPH80(xphX PH8 0(   xphXPH808DCPHH8?0:(9 GEA<@76<`@ `@ `@ `@ `@ `@  XYP[ @ 0U      OP   8ps PX M    `R  n@ F  P | m(p 0!!p" 0# #= %FPPWp& B %RiQ74eBqbK2_o[{v.F/_PyType_Ready__ZN20vtkLabeledDataMapper24ReleaseGraphicsResourcesEP9vtkWindow_PyvtkLabeledDataMapper_ClassNew_PyvtkMapper2D_ClassNew_PyVTKObject_New__ZL32PyvtkLabeledDataMapper_StaticNewv__ZdaPv__ZN20vtkLabeledDataMapper3NewEv__ZN20vtkLabeledDataMapper8GetInputEv__ZN20vtkLabeledDataMapper8GetMTimeEv_PyVTKObject_GetSet__Py_NoneStruct__ZN13vtkPythonUtil12AddEnumToMapEP11_typeobject_PyVTKObject_GetObject__ZN20vtkLabeledDataMapper12SetInputDataEP13vtkDataObject__ZL30PyvtkLabeledDataMapper_Methods_PyObject_GenericSetAttr_PyObject_GenericGetAttr_PyVTKObject_Repr_PyVTKAddFile_vtkLabeledDataMapper_PyVTKObject_AsBuffer_PyErr_Clear_strcmp_strlen__ZN20vtkLabeledDataMapper12SetTransformEP12vtkTransform__Znam___stack_chk_fail_PyObject_GC_Del_PyVTKObject_Check__ZN20vtkLabeledDataMapper20SetLabelTextPropertyEP15vtkTextPropertyi__Z43PyvtkLabeledDataMapper_Coordinates_FromEnumi__ZN13vtkPythonArgs13ArgCountErrorEii__ZN13vtkPythonArgs8GetArrayEPdi__ZN13vtkPythonArgs8SetArrayEiPKdi__ZN13vtkPythonArgs8GetValueERi__ZN20vtkLabeledDataMapper20GetLabelTextPropertyEi__ZN20vtkLabeledDataMapper17SetFieldDataArrayEi__ZN20vtkLabeledDataMapper12GetLabelTextEi_PyLong_FromLong_PyLong_FromUnsignedLong_PyDict_SetItemString_PyVTKObject_String_PyVTKObject_SetFlag_PyBytes_FromStringAndSize_PyUnicode_FromStringAndSize_Py_BuildValue_PyVTKObject_Delete_PyVTKObject_Traverse__ZN13vtkPythonUtil20GetObjectFromPointerEP13vtkObjectBase__ZL39PyvtkLabeledDataMapper_Coordinates_Type__ZL27PyvtkLabeledDataMapper_Type_PyLong_Type_PyType_Type_PyObject_Free___stack_chk_guard_PyErr_Occurred_PyVTKClass_Add__Py_Dealloc__ZN13vtkPythonArgs8GetValueERPc__ZN13vtkPythonArgs13ArgCountErrorEiPKc__ZN20vtkLabeledDataMapper8IsTypeOfEPKc__ZN13vtkObjectBase8IsTypeOfEPKc__ZN20vtkLabeledDataMapper16SetFieldDataNameEPKc__ZN13vtkPythonArgs17GetArgAsVTKObjectEPKcRb__ZN13vtkPythonArgs19GetSelfFromFirstArgEP7_objectS1___ZL43PyvtkLabeledDataMapper_SetLabelTextPropertyP7_objectS0___ZL43PyvtkLabeledDataMapper_GetLabelTextPropertyP7_objectS0___ZL43PyvtkLabeledDataMapper_RenderOpaqueGeometryP7_objectS0___ZL40PyvtkLabeledDataMapper_SetFieldDataArrayP7_objectS0___ZL40PyvtkLabeledDataMapper_GetFieldDataArrayP7_objectS0___ZL36PyvtkLabeledDataMapper_RenderOverlayP7_objectS0___ZL46PyvtkLabeledDataMapper_CoordinateSystemDisplayP7_objectS0___ZL35PyvtkLabeledDataMapper_GetLabelTextP7_objectS0___ZL31PyvtkLabeledDataMapper_GetInputP7_objectS0___ZL35PyvtkLabeledDataMapper_SafeDownCastP7_objectS0___ZL42PyvtkLabeledDataMapper_SetLabeledComponentP7_objectS0___ZL42PyvtkLabeledDataMapper_GetLabeledComponentP7_objectS0___ZL37PyvtkLabeledDataMapper_SetLabelFormatP7_objectS0___ZL37PyvtkLabeledDataMapper_GetLabelFormatP7_objectS0___ZL49PyvtkLabeledDataMapper_SetLabelModeToLabelVectorsP7_objectS0___ZL49PyvtkLabeledDataMapper_SetLabelModeToLabelTensorsP7_objectS0___ZL49PyvtkLabeledDataMapper_SetLabelModeToLabelScalarsP7_objectS0___ZL40PyvtkLabeledDataMapper_GetNumberOfLabelsP7_objectS0___ZL49PyvtkLabeledDataMapper_SetLabelModeToLabelNormalsP7_objectS0___ZL47PyvtkLabeledDataMapper_ReleaseGraphicsResourcesP7_objectS0___ZL49PyvtkLabeledDataMapper_SetLabelModeToLabelTCoordsP7_objectS0___ZL45PyvtkLabeledDataMapper_SetLabelModeToLabelIdsP7_objectS0___ZL39PyvtkLabeledDataMapper_GetLabelPositionP7_objectS0___ZL35PyvtkLabeledDataMapper_SetTransformP7_objectS0___ZL35PyvtkLabeledDataMapper_GetTransformP7_objectS0___ZL42PyvtkLabeledDataMapper_SetCoordinateSystemP7_objectS0___ZL42PyvtkLabeledDataMapper_GetCoordinateSystemP7_objectS0___ZL31PyvtkLabeledDataMapper_IsTypeOfP7_objectS0___ZL50PyvtkLabeledDataMapper_GetCoordinateSystemMaxValueP7_objectS0___ZL50PyvtkLabeledDataMapper_GetCoordinateSystemMinValueP7_objectS0___ZL31PyvtkLabeledDataMapper_GetMTimeP7_objectS0___ZL39PyvtkLabeledDataMapper_SetFieldDataNameP7_objectS0___ZL39PyvtkLabeledDataMapper_GetFieldDataNameP7_objectS0___ZL35PyvtkLabeledDataMapper_SetLabelModeP7_objectS0___ZL35PyvtkLabeledDataMapper_GetLabelModeP7_objectS0___ZL34PyvtkLabeledDataMapper_NewInstanceP7_objectS0___ZL44PyvtkLabeledDataMapper_CoordinateSystemWorldP7_objectS0___ZL35PyvtkLabeledDataMapper_SetInputDataP7_objectS0___ZL51PyvtkLabeledDataMapper_SetLabelModeToLabelFieldDataP7_objectS0___ZL26PyvtkLabeledDataMapper_IsAP7_objectS0___ZN20vtkLabeledDataMapper20RenderOpaqueGeometryEP11vtkViewportP10vtkActor2D__ZN20vtkLabeledDataMapper13RenderOverlayEP11vtkViewportP10vtkActor2D