ELF>z@@98 !"#/0UH@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=tH@H8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u>H(HtD$9D$t;H111HT$(dH+%(u9H8HHuҐHuHHff.@UH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u=H(HtD$9D$t:H111HT$(dH+%(u8H0]fDHHuӐHHuHff.@SH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u=H(HtD$9D$t:H111HT$(dH+%(uUH0[fDHHuӐt_\HuHcDHHH;tЉfUH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u=H(HtD$9D$t:H111HT$(dH+%(uVH0]fDHHuӐtHohHuH@HHH;tHSH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u=H(HtD$9D$t:H111HT$(dH+%(uUH0[fDHHuӐt_XHuHcDHHH;tЉfSH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u=H(HtD$9D$t:H111HT$(dH+%(uUH0[fDHHuӐt_`HuHcDHHH;tЉfATUH8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$uCH(HtD$9D$tHH111HT$(dH+%(H8]A\fDHHuftDHopHuHtQHHHIHuLH@HHH;tHfDHHNUH@fnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uLHo(Ht!D$ +D$$tFH|$1HT$8dH+%(H@]fDHHuϐHt$ H|$tD$$t$ t19u`tHEu`HHuHHDHEHH;u;u`tˉu`HfH@H8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u>H(HtD$9D$t;H111HT$(dH+%(H8@HHuҐHtAHH;uIG`t G`HuHHfDHH;t@1DH8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u>H(HtD$9D$t;H111HT$(dH+%(H8@HHuҐHtAHH;uI`t G`HuHHHH;t@fAVAUATUSHPfnFdH%(HD$H1HHt$HD$HGfnȉD$(fbfD$ uUHo(Ht!D$ +D$$tOH|$1HT$HdH+%(HP[]A\A]A^HHuƐLl$0Ld$LLtD$0T$8HL\$@D$fH~fI~D$f.D$0zEuCfHnf.d$8z6u4fInf.l$@z'u%H 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. V.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. V.SafeDownCast(vtkObjectBase) -> vtkGenericInterpolatedVelocityField C++: static vtkGenericInterpolatedVelocityField *SafeDownCast( vtkObjectBase *o) V.NewInstance() -> vtkGenericInterpolatedVelocityField C++: vtkGenericInterpolatedVelocityField *NewInstance() V.FunctionValues([float, ...], [float, ...]) -> int C++: int FunctionValues(double *x, double *f) override; Evaluate the velocity field, f, at (x, y, z, t). For now, t is ignored. V.AddDataSet(vtkGenericDataSet) C++: virtual void AddDataSet(vtkGenericDataSet *dataset) Add a dataset used for the implicit function evaluation. If more than one dataset is added, the evaluation point is searched in all until a match is found. THIS FUNCTION DOES NOT CHANGE THE REFERENCE COUNT OF dataset FOR THREAD SAFETY REASONS. V.ClearLastCell() C++: void ClearLastCell() Set the last cell id to -1 so that the next search does not start from the previous cell V.GetLastCell() -> vtkGenericAdaptorCell C++: vtkGenericAdaptorCell *GetLastCell() Return the cell cached from last evaluation. V.GetLastLocalCoordinates([float, float, float]) -> int C++: int GetLastLocalCoordinates(double pcoords[3]) Returns the interpolation weights cached from last evaluation if the cached cell is valid (returns 1). Otherwise, it does not change w and returns 0. V.GetCaching() -> int C++: virtual int GetCaching() Turn caching on/off. V.SetCaching(int) C++: virtual void SetCaching(int _arg) Turn caching on/off. V.CachingOn() C++: virtual void CachingOn() Turn caching on/off. V.CachingOff() C++: virtual void CachingOff() Turn caching on/off. V.GetCacheHit() -> int C++: virtual int GetCacheHit() Caching statistics. V.GetCacheMiss() -> int C++: virtual int GetCacheMiss() Caching statistics. V.GetVectorsSelection() -> string C++: virtual char *GetVectorsSelection() If you want to work with an arbitrary vector array, then set its name here. By default this in nullptr and the filter will use the active vector array. V.SelectVectors(string) C++: void SelectVectors(const char *fieldName) If you want to work with an arbitrary vector array, then set its name here. By default this in nullptr and the filter will use the active vector array. V.GetLastDataSet() -> vtkGenericDataSet C++: virtual vtkGenericDataSet *GetLastDataSet() Returns the last dataset that was visited. Can be used as a first guess as to where the next point will be as well as to avoid searching through all datasets to get more information about the point. V.CopyParameters(vtkGenericInterpolatedVelocityField) C++: virtual void CopyParameters( vtkGenericInterpolatedVelocityField *from) Copy the user set parameters from source. This copies the Caching parameters. Sub-classes can add more after chaining. AUATIULopHMtpHtSLtdLLLhLLLHEpHHEH]A\A]H@LHEpfDHu]A\A]vtkFunctionSetvtkObjectUH=Hu]ÐHH=tHH=tH]HHH;u!`tG`fDHHH;u!W`tG`D1HHH|$pHD$xH9t HtH|$0HtHD$8H9tHx5HDGCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0GNUzRx 0DXl    EDPa AE 4FBD S BBM ^BBOEY B j8?L<(`EAD`n AAF H@ I ED@ AG ED@ AG ED@ AG ED@ AG 8ED@ AG (\-FADP ABG <EDP AG  H@ E H@ E @FBB A(A0D 0A(A BBBI 0(nFAA D`  AABH \gFD@ EE 8^FBA A(Dp (A ABBD MFF0OFDD n ABA DDB  EDP AK DEDP AK zPLRx P$FBB B(A0D8GV 8D0A(B BBBE $x:  7  "{   C  p P 0R - @< ! b  0 n g/ ^t+-$$ Z ( 0*(:+--2 7<AFK$P2U>ZK_Zefkqqw}(""'"_"" " B"  . "p w ~    "O  " ? . ""<e      K g s     3 E [ o  pM     O  & c  !/    IXdw_ZL47PyvtkGenericInterpolatedVelocityField_StaticNewv_ZL50PyvtkGenericInterpolatedVelocityField_SafeDownCastP7_objectS0__ZL46PyvtkGenericInterpolatedVelocityField_IsTypeOfP7_objectS0__ZL51PyvtkGenericInterpolatedVelocityField_ClearLastCellP7_objectS0__ZL49PyvtkGenericInterpolatedVelocityField_GetLastCellP7_objectS0__ZL50PyvtkGenericInterpolatedVelocityField_GetCacheMissP7_objectS0__ZL52PyvtkGenericInterpolatedVelocityField_GetLastDataSetP7_objectS0__ZL49PyvtkGenericInterpolatedVelocityField_GetCacheHitP7_objectS0__ZL48PyvtkGenericInterpolatedVelocityField_GetCachingP7_objectS0__ZL57PyvtkGenericInterpolatedVelocityField_GetVectorsSelectionP7_objectS0__ZL48PyvtkGenericInterpolatedVelocityField_SetCachingP7_objectS0__ZL48PyvtkGenericInterpolatedVelocityField_CachingOffP7_objectS0__ZL47PyvtkGenericInterpolatedVelocityField_CachingOnP7_objectS0__ZL61PyvtkGenericInterpolatedVelocityField_GetLastLocalCoordinatesP7_objectS0__ZL41PyvtkGenericInterpolatedVelocityField_IsAP7_objectS0__ZL49PyvtkGenericInterpolatedVelocityField_NewInstanceP7_objectS0__ZL51PyvtkGenericInterpolatedVelocityField_SelectVectorsP7_objectS0__ZL42PyvtkGenericInterpolatedVelocityField_Type_ZL45PyvtkGenericInterpolatedVelocityField_Methods_GLOBAL__sub_I_vtkGenericInterpolatedVelocityFieldPython.cxx_ZL52PyvtkGenericInterpolatedVelocityField_CopyParametersP7_objectS0__ZL48PyvtkGenericInterpolatedVelocityField_AddDataSetP7_objectS0__ZL52PyvtkGenericInterpolatedVelocityField_FunctionValuesP7_objectS0__ZL52PyvtkGenericInterpolatedVelocityField_FunctionValuesP7_objectS0_.cold.LC0.LC1.LC2.LC5.LC3.LC4.LC6.LC7.LC8.LC9.LC10.LC11.LC12.LC13.LC14.LC15.LC16.LC17.LC18.LC19.LC21.LC22.LC23.LC24.LC20_ZN35vtkGenericInterpolatedVelocityField10GetCachingEv_ZN35vtkGenericInterpolatedVelocityField10SetCachingEi_ZN35vtkGenericInterpolatedVelocityField11GetCacheHitEv_ZN35vtkGenericInterpolatedVelocityField12GetCacheMissEv_ZN35vtkGenericInterpolatedVelocityField19GetVectorsSelectionEv_ZN35vtkGenericInterpolatedVelocityField14GetLastDataSetEv_ZN35vtkGenericInterpolatedVelocityField3NewEv_ZNK35vtkGenericInterpolatedVelocityField19NewInstanceInternalEv_ZN13vtkPythonArgs13ArgCountErrorEii_ZN13vtkPythonArgs17GetArgAsVTKObjectEPKcRbPyErr_Occurred_ZN13vtkPythonUtil20GetObjectFromPointerEP13vtkObjectBase__stack_chk_fail_ZN35vtkGenericInterpolatedVelocityField19SetVectorsSelectionEPKcstrcmp_ZdaPvstrlen_Znammemcpy_ZN35vtkGenericInterpolatedVelocityField3IsAEPKc_ZN13vtkObjectBase8IsTypeOfEPKc_ZN35vtkGenericInterpolatedVelocityField9CachingOnEv_GLOBAL_OFFSET_TABLE__ZN35vtkGenericInterpolatedVelocityField10CachingOffEv_ZN13vtkPythonArgs8GetValueERPcPyLong_FromLong_ZN13vtkPythonArgs19GetSelfFromFirstArgEP7_objectS1__ZN35vtkGenericInterpolatedVelocityField13ClearLastCellEv_Py_NoneStruct_ZN35vtkGenericInterpolatedVelocityField11GetLastCellEvPyUnicode_FromStringAndSizePyErr_ClearPyBytes_FromStringAndSize_ZN13vtkPythonArgs8GetValueERi_ZN13vtkPythonArgs8GetArrayEPdi_ZN35vtkGenericInterpolatedVelocityField23GetLastLocalCoordinatesEPd_ZN13vtkPythonArgs8SetArrayEiPKdiPyVTKObject_CheckPyVTKObject_GetObjectPyVTKObject_SetFlagPyvtkGenericInterpolatedVelocityField_ClassNewPyVTKClass_AddPyvtkFunctionSet_ClassNewPyType_ReadyPyVTKAddFile_vtkGenericInterpolatedVelocityFieldPyDict_SetItemString_Py_Dealloc_ZN35vtkGenericInterpolatedVelocityField14CopyParametersEPS__ZN35vtkGenericInterpolatedVelocityField10AddDataSetEP17vtkGenericDataSetDW.ref.__gxx_personality_v0_ZN13vtkPythonArgs10GetArgSizeEi_ZN13vtkPythonArgs5ArrayIdEC1El_ZN35vtkGenericInterpolatedVelocityField14FunctionValuesEPdS0__Unwind_ResumePyType_TypePyVTKObject_DeletePyVTKObject_ReprPyVTKObject_StringPyObject_GenericGetAttrPyObject_GenericSetAttrPyVTKObject_AsBufferPyVTKObject_TraversePyVTKObject_GetSetPyVTKObject_NewPyObject_GC_Del,-`N.O/PQPR 0JN}^/T1TP_2TZR3]N`aP*bR4.NQ`aciPvQ}R5N!`8PE_]*IjR6N`P&Q=*KKRq7N`P_*H*RQ8N`P_*F R39N`PVdef*J+*b9Ra:N`g% P1 *bN *Gx R ; N `1 *GL PX *br *] R < N! `A *G[ Pg *b *[ R =! NQ `v h i P _ P j RT > N ` ^*Y'/,T:1?THPY_v2{TZR?N9`Z*MeLx/PQklmPR6@N`^*S)T9UAVPWc*STUVWUP*bjRy+/,o+p+qn/s1AN`/OP*buRABN`COP*b$v+RcDxyxyDNcU|U`hh P"j^PhPy_jzRL t"'.'L!T-U5VAWSXtU/T&1+T92>TKZ*G*GE+#U.U6|} h0~X8@    (0 8 @ HX ` hx H 0    x $  2 P     f(08 @ H@X 0 ` h x     ZP   > `  q     K(p8 @ HX { 4H\p <PdpP<0`@   ,0 `p#$H ww0)') .symtab.strtab.shstrtab.rela.text.data.bss.text._ZN35vtkGenericInterpolatedVelocityField10GetCachingEv.text._ZN35vtkGenericInterpolatedVelocityField10SetCachingEi.text._ZN35vtkGenericInterpolatedVelocityField11GetCacheHitEv.text._ZN35vtkGenericInterpolatedVelocityField12GetCacheMissEv.text._ZN35vtkGenericInterpolatedVelocityField19GetVectorsSelectionEv.text._ZN35vtkGenericInterpolatedVelocityField14GetLastDataSetEv.rela.text._ZNK35vtkGenericInterpolatedVelocityField19NewInstanceInternalEv.rodata.str1.1.rodata.str1.8.rela.text._ZN35vtkGenericInterpolatedVelocityField19SetVectorsSelectionEPKc.rodata._ZN35vtkGenericInterpolatedVelocityField3IsAEPKc.str1.1.rela.text._ZN35vtkGenericInterpolatedVelocityField3IsAEPKc.rela.text._ZN35vtkGenericInterpolatedVelocityField9CachingOnEv.rela.text._ZN35vtkGenericInterpolatedVelocityField10CachingOffEv.rela.text.startup.rela.init_array.rela.text.unlikely.gcc_except_table.rela.data.rel.rela.data.rel.local.rela.data.rel.local.DW.ref.__gxx_personality_v0.comment.note.GNU-stack.note.gnu.property.rela.eh_frame.group>@6F>H6G>P6H>X6I>`6J>h6K>p 6M>| 6S> 6Y> 6[> 6]> 6w 2@Vh6 &,1n0@(P n` p @(j62y 2@/@@j6f2//O@j6@0?@xk6 '0<"@k6"i0d@k06$|0w@k6&0:@kH6(1(`1 @8l 6+3 @XmX6-5@r6/05, 55 45/@r64: 7F G(XvE