Date: Thu, 17 Nov 2022 20:46:51 GMT From: Thierry Thomas <thierry@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 268a15a15e03 - main - science/paraview: upgrade to 5.11.0 Message-ID: <202211172046.2AHKkpxV081305@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by thierry: URL: https://cgit.FreeBSD.org/ports/commit/?id=268a15a15e036328ba29a86ab1670817e1195d99 commit 268a15a15e036328ba29a86ab1670817e1195d99 Author: Thierry Thomas <thierry@FreeBSD.org> AuthorDate: 2022-11-17 20:41:22 +0000 Commit: Thierry Thomas <thierry@FreeBSD.org> CommitDate: 2022-11-17 20:46:48 +0000 science/paraview: upgrade to 5.11.0 --- science/paraview/Makefile | 21 +- science/paraview/Makefile.version | 2 +- science/paraview/distinfo | 6 +- .../files/patch-Qt_Core_pqServerConfiguration.cxx | 4 +- ...ThirdParty_exodusII_vtkexodusII_src_ex__utils.c | 16 - ...ch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C | 11 + science/paraview/pkg-plist | 870 ++++++++++++--------- 7 files changed, 526 insertions(+), 404 deletions(-) diff --git a/science/paraview/Makefile b/science/paraview/Makefile index 6cb7ed4508ec..290aa64420b6 100644 --- a/science/paraview/Makefile +++ b/science/paraview/Makefile @@ -1,8 +1,7 @@ PORTNAME= paraview -DISTVERSION= 5.10.1 -PORTREVISION= 9 +DISTVERSION= ${PARAVIEW_VER}.0 CATEGORIES= science graphics -MASTER_SITES= http://www.paraview.org/files/v${VERMAJORMINOR}/ +MASTER_SITES= http://www.paraview.org/files/v${PARAVIEW_VER}/ DISTNAME= ParaView-v${PORTVERSION} MAINTAINER= thierry@FreeBSD.org @@ -19,6 +18,7 @@ BROKEN_aarch64= fails to link: undefined reference to `sbrk' BUILD_DEPENDS= ${PYNUMPY} \ cli11>0:devel/cli11 \ utf8cpp>0:devel/utf8cpp \ + nlohmann-json>0:devel/nlohmann-json \ ${LOCALBASE}/include/exprtk.hpp:math/exprtk \ ${PYTHON_SITELIBDIR}/matplotlib/pyplot.py:math/py-matplotlib@${PY_FLAVOR} LIB_DEPENDS= libhdf5.so:science/hdf5 \ @@ -39,10 +39,12 @@ LIB_DEPENDS= libhdf5.so:science/hdf5 \ libgdal.so:graphics/gdal \ libgeos.so:graphics/geos \ libhpdf.so:print/libharu \ + libproj.so:graphics/proj \ libpdal_base.so:math/pdal \ libdrm.so:graphics/libdrm \ libcgns.so:science/cgnslib \ liblz4.so:archivers/liblz4 \ + libverdict.so:math/verdict \ libnetcdf.so:science/netcdf \ libjsoncpp.so:devel/jsoncpp \ libprotobuf.so:devel/protobuf \ @@ -60,11 +62,11 @@ RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_SITELIBDIR}/matplotlib/pyplot.py:math/py-matplotlib@${PY_FLAVOR} USES= alias cmake compiler:c11 eigen:3 fortran gl gnome jpeg localbase \ - pkgconfig python qt:5 shebangfix tar:xz xorg + pkgconfig python qt:5 shebangfix sqlite tar:xz xorg USE_GL= gl glew glu glut USE_GNOME= libxml2 USE_QT= buildtools:build core gui help network opengl qmake:build sql svg \ - widgets x11extras xmlpatterns + webengine widgets x11extras xmlpatterns USE_XORG= ice sm x11 xau xcb xcursor xdamage xdmcp xext xfixes xorgproto xrender \ xxf86vm USE_LDCONFIG= yes @@ -99,8 +101,6 @@ SHEBANG_FILES= VTK/Examples/SearchScript.sh \ VTK/Utilities/Maintenance/*.sh \ Clients/CommandLineExecutables/paraview-config.in -VERMAJORMINOR= ${PORTVERSION:R} - OPTIONS_DEFINE= DOCS EXAMPLES MPI OSMESA OPTIONS_SUB= yes OSMESA_DESC= Use Mesa for off-screen rendering @@ -120,7 +120,7 @@ OSMESA_CMAKE_ON= -DVTK_USE_X:BOOL="OFF" \ -DOSMESA_LIBRARY:FILEPATH=${LOCALBASE}/lib/libOSMesa.so OSMESA_CMAKE_OFF= -DVTK_USE_X:BOOL="ON" -EXAMPLES_CMAKE_BOOL= PARAVIEW_BUILD_EXAMPLES +EXAMPLES_CMAKE_BOOL= PARAVIEW_ENABLE_EXAMPLES PORTEXAMPLES= * #TEST_CMAKE_ON= -DPARAVIEW_BUILD_TESTING=WANT \ @@ -139,12 +139,12 @@ PORTEXAMPLES= * #LIB_DEPENDS+= libospray.so:graphics/ospray #CMAKE_ARGS+= -DPARAVIEW_ENABLE_RAYTRACING -PLIST_SUB+= VERMAJORMINOR=${VERMAJORMINOR} +PLIST_SUB+= VERMAJORMINOR=${PARAVIEW_VER} VTK9_CONFLICTS= vtk.py vtkmodules/__init__.py vtkmodules/all.py \ vtkmodules/gtk vtkmodules/numpy_interface \ vtkmodules/qt vtkmodules/test vtkmodules/tk \ - vtkmodules/util vtkmodules/wx + vtkmodules/util vtkmodules/wx vtkmodules/generate_pyi.py pre-configure: ${REINPLACE_CMD} -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \ @@ -162,5 +162,6 @@ post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/Examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} +.include <./Makefile.version> .include <../../math/vtk9/Makefile.version> .include <bsd.port.mk> diff --git a/science/paraview/Makefile.version b/science/paraview/Makefile.version index 29c539c5d8a7..319b8e680750 100644 --- a/science/paraview/Makefile.version +++ b/science/paraview/Makefile.version @@ -1,3 +1,3 @@ # this file is provided for Paraview users -PARAVIEW_VER=5.10 +PARAVIEW_VER=5.11 diff --git a/science/paraview/distinfo b/science/paraview/distinfo index f79459dc2f0b..fcd6eada6df4 100644 --- a/science/paraview/distinfo +++ b/science/paraview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1653337182 -SHA256 (ParaView-v5.10.1.tar.xz) = 520e3cdfba4f8592be477314c2f6c37ec73fb1d5b25ac30bdbd1c5214758b9c2 -SIZE (ParaView-v5.10.1.tar.xz) = 70218088 +TIMESTAMP = 1668610241 +SHA256 (ParaView-v5.11.0.tar.xz) = 9a0b8fe8b1a2cdfd0ace9a87fa87e0ec21ee0f6f0bcb1fdde050f4f585a25165 +SIZE (ParaView-v5.11.0.tar.xz) = 70212180 diff --git a/science/paraview/files/patch-Qt_Core_pqServerConfiguration.cxx b/science/paraview/files/patch-Qt_Core_pqServerConfiguration.cxx index a4ba38d67e24..3761a7c6a093 100644 --- a/science/paraview/files/patch-Qt_Core_pqServerConfiguration.cxx +++ b/science/paraview/files/patch-Qt_Core_pqServerConfiguration.cxx @@ -1,6 +1,6 @@ ---- Qt/Core/pqServerConfiguration.cxx.orig 2022-03-11 22:19:30 UTC +--- Qt/Core/pqServerConfiguration.cxx.orig 2022-11-14 01:44:43 UTC +++ Qt/Core/pqServerConfiguration.cxx -@@ -212,7 +212,7 @@ vtkPVXMLElement* pqServerConfiguration::startupXML() c +@@ -229,7 +229,7 @@ QString pqServerConfiguration::termCommand() //----------------------------------------------------------------------------- QString pqServerConfiguration::termCommand() { diff --git a/science/paraview/files/patch-VTK_ThirdParty_exodusII_vtkexodusII_src_ex__utils.c b/science/paraview/files/patch-VTK_ThirdParty_exodusII_vtkexodusII_src_ex__utils.c deleted file mode 100644 index 06985d1ffa22..000000000000 --- a/science/paraview/files/patch-VTK_ThirdParty_exodusII_vtkexodusII_src_ex__utils.c +++ /dev/null @@ -1,16 +0,0 @@ ---- VTK/ThirdParty/exodusII/vtkexodusII/src/ex_utils.c.orig 2022-03-11 22:19:30 UTC -+++ VTK/ThirdParty/exodusII/vtkexodusII/src/ex_utils.c -@@ -1770,11 +1770,11 @@ void ex__compress_variable(int exoid, int varid, int t - */ - - /* const int NC_SZIP_EC = 4; */ /* Selects entropy coding method for szip. */ -- const int NC_SZIP_NN = 32; /* Selects nearest neighbor coding method for szip. */ -+ const int NC_SZIP_NN_ = 32; /* Selects nearest neighbor coding method for szip. */ - /* Even and between 4 and 32; typical values are 8, 10, 16, 32 */ - const int SZIP_PIXELS_PER_BLOCK = - file->compression_level == 0 ? 32 : file->compression_level; -- nc_def_var_szip(exoid, varid, NC_SZIP_NN, SZIP_PIXELS_PER_BLOCK); -+ nc_def_var_szip(exoid, varid, NC_SZIP_NN_, SZIP_PIXELS_PER_BLOCK); - #else - char errmsg[MAX_ERR_LENGTH]; - snprintf(errmsg, MAX_ERR_LENGTH, diff --git a/science/paraview/files/patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C b/science/paraview/files/patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C new file mode 100644 index 000000000000..95974fab01bd --- /dev/null +++ b/science/paraview/files/patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C @@ -0,0 +1,11 @@ +--- VTK/ThirdParty/ioss/vtkioss/Ioss_FileInfo.C.orig 2022-11-14 01:44:43 UTC ++++ VTK/ThirdParty/ioss/vtkioss/Ioss_FileInfo.C +@@ -27,7 +27,7 @@ + #endif + #else + #include <sys/unistd.h> +-#if defined(__APPLE__) && defined(__MACH__) ++#if (defined(__APPLE__) && defined(__MACH__)) || defined(__FreeBSD__) + #include <sys/param.h> + #include <sys/mount.h> + #else diff --git a/science/paraview/pkg-plist b/science/paraview/pkg-plist index 9e67d3bc879c..75516ed2c6d6 100644 --- a/science/paraview/pkg-plist +++ b/science/paraview/pkg-plist @@ -55,8 +55,6 @@ include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkBinsAccumulator. include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkBinsAccumulator.txx include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkBumpMapMapper.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkBumpMapRepresentation.h -include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkCDIReader.h -include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkCDIReaderModule.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkDataMineBlockReader.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkDataMineDrillHoleReader.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkDataMineDummyReader.h @@ -79,12 +77,12 @@ include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkFiltersHyperTree include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkFunctor.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkGMVReader.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkGMVReaderModule.h -%%MPI%%include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkGenIOReader.h -%%MPI%%include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkGenericIOReaderModule.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkGeodesicMeasurementFiltersModule.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkGeodesicsBetweenPoints.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkGeometricMeanArrayMeasurement.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkHarmonicMeanArrayMeasurement.h +include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkLANLX3DReader.h +include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkLANLX3DReaderModule.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkLagrangianHelperBase.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkLagrangianParticleTrackerModule.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkLagrangianSeedHelper.h @@ -126,12 +124,9 @@ include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkStreamLinesRepre include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkStreamingParticlesModule.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkStreamingParticlesPriorityQueue.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkStreamingParticlesRepresentation.h -include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkSurfaceLICRepresentation.h -include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkSurfaceLICRepresentationsModule.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkTemporalRanges.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkThickenLayeredCells.h include/paraview-%%VERMAJORMINOR%%/ParaView_paraview_plugins/vtkThickenLayeredCellsFiltersModule.h -%%MPI%%include/paraview-%%VERMAJORMINOR%%/ParticleAdaptor.h include/paraview-%%VERMAJORMINOR%%/PhastaAdaptor.h include/paraview-%%VERMAJORMINOR%%/PyVTKEnum.h include/paraview-%%VERMAJORMINOR%%/PyVTKExtras.h @@ -145,10 +140,10 @@ include/paraview-%%VERMAJORMINOR%%/QVTKInteractor.h include/paraview-%%VERMAJORMINOR%%/QVTKInteractorAdapter.h include/paraview-%%VERMAJORMINOR%%/QVTKOpenGLNativeWidget.h include/paraview-%%VERMAJORMINOR%%/QVTKOpenGLStereoWidget.h -include/paraview-%%VERMAJORMINOR%%/QVTKOpenGLWidget.h include/paraview-%%VERMAJORMINOR%%/QVTKOpenGLWindow.h include/paraview-%%VERMAJORMINOR%%/QVTKRenderWidget.h include/paraview-%%VERMAJORMINOR%%/QVTKRenderWindowAdapter.h +include/paraview-%%VERMAJORMINOR%%/QVTKTableModelAdapter.h include/paraview-%%VERMAJORMINOR%%/QVTKWin32Header.h include/paraview-%%VERMAJORMINOR%%/SMP/Common/vtkSMPThreadLocalAPI.h include/paraview-%%VERMAJORMINOR%%/SMP/Common/vtkSMPThreadLocalImplAbstract.h @@ -162,32 +157,6 @@ include/paraview-%%VERMAJORMINOR%%/SMP/STDThread/vtkSMPToolsImpl.txx include/paraview-%%VERMAJORMINOR%%/SMP/Sequential/vtkSMPThreadLocalImpl.h include/paraview-%%VERMAJORMINOR%%/SMP/Sequential/vtkSMPToolsImpl.txx include/paraview-%%VERMAJORMINOR%%/catalyst.mod -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst.h -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst.hpp -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_api.h -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_conduit.hpp -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_conduit_blueprint.hpp -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_conduit_blueprint_mangle.h -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_conduit_error.hpp -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_conduit_mangle.h -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_export.h -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_impl.h -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_stub.h -include/paraview-%%VERMAJORMINOR%%/catalyst/catalyst_version.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_bitwidth_style_types.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_blueprint.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_blueprint_c_exports.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_blueprint_mcarray.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_blueprint_mesh.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_c_exports.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_config.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_cpp_to_c.hpp -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_datatype.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_endianness_types.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_exports.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_node.h -include/paraview-%%VERMAJORMINOR%%/catalyst/conduit_utils.h include/paraview-%%VERMAJORMINOR%%/catalyst_python.mod include/paraview-%%VERMAJORMINOR%%/fv_create_data.h include/paraview-%%VERMAJORMINOR%%/octree/octree @@ -232,6 +201,7 @@ include/paraview-%%VERMAJORMINOR%%/pqApplicationSettingsReaction.h include/paraview-%%VERMAJORMINOR%%/pqApplyBehavior.h include/paraview-%%VERMAJORMINOR%%/pqApplyPropertiesReaction.h include/paraview-%%VERMAJORMINOR%%/pqArrayListDomain.h +include/paraview-%%VERMAJORMINOR%%/pqArrayListWidget.h include/paraview-%%VERMAJORMINOR%%/pqArraySelectionWidget.h include/paraview-%%VERMAJORMINOR%%/pqArraySelectorPropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqArrayStatusPropertyWidget.h @@ -260,6 +230,7 @@ include/paraview-%%VERMAJORMINOR%%/pqCatalystPauseSimulationReaction.h include/paraview-%%VERMAJORMINOR%%/pqCatalystRemoveBreakpointReaction.h include/paraview-%%VERMAJORMINOR%%/pqCatalystSetBreakpointReaction.h include/paraview-%%VERMAJORMINOR%%/pqCategoryToolbarsBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqChangeFileNameReaction.h include/paraview-%%VERMAJORMINOR%%/pqChangeInputDialog.h include/paraview-%%VERMAJORMINOR%%/pqChangePipelineInputReaction.h include/paraview-%%VERMAJORMINOR%%/pqChartSelectionReaction.h @@ -310,6 +281,7 @@ include/paraview-%%VERMAJORMINOR%%/pqConsoleWidgetEventPlayer.h include/paraview-%%VERMAJORMINOR%%/pqConsoleWidgetEventTranslator.h include/paraview-%%VERMAJORMINOR%%/pqContextMenuInterface.h include/paraview-%%VERMAJORMINOR%%/pqContextView.h +include/paraview-%%VERMAJORMINOR%%/pqCoordinateFramePropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqCopyReaction.h include/paraview-%%VERMAJORMINOR%%/pqCoreConfiguration.h include/paraview-%%VERMAJORMINOR%%/pqCoreInit.h @@ -335,7 +307,6 @@ include/paraview-%%VERMAJORMINOR%%/pqDataInformationWidget.h include/paraview-%%VERMAJORMINOR%%/pqDataQueryReaction.h include/paraview-%%VERMAJORMINOR%%/pqDataRepresentation.h include/paraview-%%VERMAJORMINOR%%/pqDataTimeStepBehavior.h -include/paraview-%%VERMAJORMINOR%%/pqDebug.h include/paraview-%%VERMAJORMINOR%%/pqDefaultContextMenu.h include/paraview-%%VERMAJORMINOR%%/pqDefaultMainWindow.h include/paraview-%%VERMAJORMINOR%%/pqDefaultViewBehavior.h @@ -349,6 +320,7 @@ include/paraview-%%VERMAJORMINOR%%/pqDisplayPanel.h include/paraview-%%VERMAJORMINOR%%/pqDisplayPanelInterface.h include/paraview-%%VERMAJORMINOR%%/pqDisplayPanelPropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqDisplayRepresentationWidget.h +include/paraview-%%VERMAJORMINOR%%/pqDisplaySizedImplicitPlanePropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqDockWindowInterface.h include/paraview-%%VERMAJORMINOR%%/pqDoubleLineEdit.h include/paraview-%%VERMAJORMINOR%%/pqDoubleRangeDialog.h @@ -361,11 +333,17 @@ include/paraview-%%VERMAJORMINOR%%/pqEditCameraReaction.h include/paraview-%%VERMAJORMINOR%%/pqEditColorMapReaction.h include/paraview-%%VERMAJORMINOR%%/pqEditScalarBarReaction.h include/paraview-%%VERMAJORMINOR%%/pqEnableWidgetDecorator.h +include/paraview-%%VERMAJORMINOR%%/pqEqualizerPropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqExampleVisualizationsDialog.h include/paraview-%%VERMAJORMINOR%%/pqExampleVisualizationsDialogReaction.h include/paraview-%%VERMAJORMINOR%%/pqExpandableTableView.h include/paraview-%%VERMAJORMINOR%%/pqExpanderButton.h include/paraview-%%VERMAJORMINOR%%/pqExportReaction.h +include/paraview-%%VERMAJORMINOR%%/pqExpressionChooserButton.h +include/paraview-%%VERMAJORMINOR%%/pqExpressionsDialog.h +include/paraview-%%VERMAJORMINOR%%/pqExpressionsManager.h +include/paraview-%%VERMAJORMINOR%%/pqExpressionsTableModel.h +include/paraview-%%VERMAJORMINOR%%/pqExpressionsWidget.h include/paraview-%%VERMAJORMINOR%%/pqExtractor.h include/paraview-%%VERMAJORMINOR%%/pqExtractorsMenuReaction.h include/paraview-%%VERMAJORMINOR%%/pqFavoritesDialog.h @@ -412,7 +390,9 @@ include/paraview-%%VERMAJORMINOR%%/pqInputSelectorWidget.h include/paraview-%%VERMAJORMINOR%%/pqIntMaskPropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqIntRangeWidget.h include/paraview-%%VERMAJORMINOR%%/pqIntVectorPropertyWidget.h +include/paraview-%%VERMAJORMINOR%%/pqInteractiveProperty2DWidget.h include/paraview-%%VERMAJORMINOR%%/pqInteractivePropertyWidget.h +include/paraview-%%VERMAJORMINOR%%/pqInteractivePropertyWidgetAbstract.h include/paraview-%%VERMAJORMINOR%%/pqInteractiveViewLink.h include/paraview-%%VERMAJORMINOR%%/pqInterfaceTracker.h include/paraview-%%VERMAJORMINOR%%/pqItemViewSearchWidget.h @@ -420,8 +400,10 @@ include/paraview-%%VERMAJORMINOR%%/pqItemViewSearchWidgetEventPlayer.h include/paraview-%%VERMAJORMINOR%%/pqKeyFrameEditor.h include/paraview-%%VERMAJORMINOR%%/pqKeyFrameTimeValidator.h include/paraview-%%VERMAJORMINOR%%/pqKeyFrameTypeWidget.h +include/paraview-%%VERMAJORMINOR%%/pqKeySequences.h include/paraview-%%VERMAJORMINOR%%/pqLabel.h include/paraview-%%VERMAJORMINOR%%/pqLightPropertyWidget.h +include/paraview-%%VERMAJORMINOR%%/pqLightToolbar.h include/paraview-%%VERMAJORMINOR%%/pqLightsEditor.h include/paraview-%%VERMAJORMINOR%%/pqLightsInspector.h include/paraview-%%VERMAJORMINOR%%/pqLineEdit.h @@ -457,12 +439,15 @@ include/paraview-%%VERMAJORMINOR%%/pqMainControlsToolbar.h include/paraview-%%VERMAJORMINOR%%/pqMainWindowEventBehavior.h include/paraview-%%VERMAJORMINOR%%/pqMainWindowEventManager.h include/paraview-%%VERMAJORMINOR%%/pqManageCustomFiltersReaction.h +include/paraview-%%VERMAJORMINOR%%/pqManageExpressionsReaction.h include/paraview-%%VERMAJORMINOR%%/pqManageFavoritesReaction.h include/paraview-%%VERMAJORMINOR%%/pqManageLinksReaction.h include/paraview-%%VERMAJORMINOR%%/pqManagePluginsReaction.h include/paraview-%%VERMAJORMINOR%%/pqMasterOnlyReaction.h include/paraview-%%VERMAJORMINOR%%/pqMemoryInspectorPanel.h include/paraview-%%VERMAJORMINOR%%/pqMenuReactionUtils.h +include/paraview-%%VERMAJORMINOR%%/pqMetaDataPropertyWidget.h +include/paraview-%%VERMAJORMINOR%%/pqModalShortcut.h include/paraview-%%VERMAJORMINOR%%/pqModelTransformSupportBehavior.h include/paraview-%%VERMAJORMINOR%%/pqMoleculePropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqMultiBlockInspectorWidget.h @@ -476,6 +461,7 @@ include/paraview-%%VERMAJORMINOR%%/pqOMETransferFunctionsPropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqOSPRayHidingDecorator.h include/paraview-%%VERMAJORMINOR%%/pqObjectBuilder.h include/paraview-%%VERMAJORMINOR%%/pqObjectPickingBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqOneLinerTextEdit.h include/paraview-%%VERMAJORMINOR%%/pqOpacityTableModel.h include/paraview-%%VERMAJORMINOR%%/pqOptions.h include/paraview-%%VERMAJORMINOR%%/pqOrbitCreatorDialog.h @@ -556,9 +542,12 @@ include/paraview-%%VERMAJORMINOR%%/pqPythonUndoCommand.h include/paraview-%%VERMAJORMINOR%%/pqPythonUtils.h include/paraview-%%VERMAJORMINOR%%/pqPythonView.h include/paraview-%%VERMAJORMINOR%%/pqQVTKWidget.h +include/paraview-%%VERMAJORMINOR%%/pqQVTKWidgetBase.h include/paraview-%%VERMAJORMINOR%%/pqQVTKWidgetEventPlayer.h include/paraview-%%VERMAJORMINOR%%/pqQVTKWidgetEventTranslator.h +include/paraview-%%VERMAJORMINOR%%/pqQtConfig.h include/paraview-%%VERMAJORMINOR%%/pqQtDeprecated.h +include/paraview-%%VERMAJORMINOR%%/pqQtWidgetsConfig.h include/paraview-%%VERMAJORMINOR%%/pqQuickLaunchDialog.h include/paraview-%%VERMAJORMINOR%%/pqReaction.h include/paraview-%%VERMAJORMINOR%%/pqRecentFilesMenu.h @@ -579,8 +568,6 @@ include/paraview-%%VERMAJORMINOR%%/pqResetScalarRangeReaction.h include/paraview-%%VERMAJORMINOR%%/pqSMAdaptor.h include/paraview-%%VERMAJORMINOR%%/pqSMProxy.h include/paraview-%%VERMAJORMINOR%%/pqSMSignalAdaptors.h -include/paraview-%%VERMAJORMINOR%%/pqSampleScalarAddRangeDialog.h -include/paraview-%%VERMAJORMINOR%%/pqSampleScalarWidget.h include/paraview-%%VERMAJORMINOR%%/pqSaveAnimationGeometryReaction.h include/paraview-%%VERMAJORMINOR%%/pqSaveAnimationReaction.h include/paraview-%%VERMAJORMINOR%%/pqSaveDataReaction.h @@ -593,11 +580,13 @@ include/paraview-%%VERMAJORMINOR%%/pqScalarSetModel.h include/paraview-%%VERMAJORMINOR%%/pqScalarValueListPropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqScalarsToColors.h include/paraview-%%VERMAJORMINOR%%/pqScaleByButton.h +include/paraview-%%VERMAJORMINOR%%/pqScaledSpinBox.h include/paraview-%%VERMAJORMINOR%%/pqSearchBox.h include/paraview-%%VERMAJORMINOR%%/pqSearchItemReaction.h include/paraview-%%VERMAJORMINOR%%/pqSectionVisibilityContextMenu.h include/paraview-%%VERMAJORMINOR%%/pqSelectReaderDialog.h include/paraview-%%VERMAJORMINOR%%/pqSelectionAdaptor.h +include/paraview-%%VERMAJORMINOR%%/pqSelectionEditor.h include/paraview-%%VERMAJORMINOR%%/pqSelectionInputWidget.h include/paraview-%%VERMAJORMINOR%%/pqSelectionLinkDialog.h include/paraview-%%VERMAJORMINOR%%/pqSelectionManager.h @@ -627,6 +616,7 @@ include/paraview-%%VERMAJORMINOR%%/pqSettings.h include/paraview-%%VERMAJORMINOR%%/pqSettingsDialog.h include/paraview-%%VERMAJORMINOR%%/pqShaderReplacementsComboBox.h include/paraview-%%VERMAJORMINOR%%/pqShaderReplacementsSelectorPropertyWidget.h +include/paraview-%%VERMAJORMINOR%%/pqShortcutDecorator.h include/paraview-%%VERMAJORMINOR%%/pqShowHideAllReaction.h include/paraview-%%VERMAJORMINOR%%/pqShowWidgetDecorator.h include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorKeyFrameType.h @@ -639,6 +629,7 @@ include/paraview-%%VERMAJORMINOR%%/pqSourcesMenuReaction.h include/paraview-%%VERMAJORMINOR%%/pqSpherePropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqSpinBox.h include/paraview-%%VERMAJORMINOR%%/pqSplinePropertyWidget.h +include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetColumnsVisibility.h include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetView.h include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetViewDecorator.h include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetViewModel.h @@ -671,6 +662,7 @@ include/paraview-%%VERMAJORMINOR%%/pqToggleInteractionViewMode.h include/paraview-%%VERMAJORMINOR%%/pqToolBarInterface.h include/paraview-%%VERMAJORMINOR%%/pqToolTipTrapper.h include/paraview-%%VERMAJORMINOR%%/pqTraceReaction.h +include/paraview-%%VERMAJORMINOR%%/pqTransferFunction2DWidget.h include/paraview-%%VERMAJORMINOR%%/pqTransferFunctionWidget.h include/paraview-%%VERMAJORMINOR%%/pqTransferFunctionWidgetPropertyDialog.h include/paraview-%%VERMAJORMINOR%%/pqTransferFunctionWidgetPropertyWidget.h @@ -705,6 +697,7 @@ include/paraview-%%VERMAJORMINOR%%/pqViewTypePropertyWidget.h include/paraview-%%VERMAJORMINOR%%/pqWaitCursor.h include/paraview-%%VERMAJORMINOR%%/pqWelcomeDialog.h include/paraview-%%VERMAJORMINOR%%/pqWidgetRangeDomain.h +include/paraview-%%VERMAJORMINOR%%/pqWidgetsInit.h include/paraview-%%VERMAJORMINOR%%/pqWidgetsModule.h include/paraview-%%VERMAJORMINOR%%/pqXMLEventObserver.h include/paraview-%%VERMAJORMINOR%%/pqXMLEventSource.h @@ -713,7 +706,9 @@ include/paraview-%%VERMAJORMINOR%%/pqXYBarChartView.h include/paraview-%%VERMAJORMINOR%%/pqXYChartView.h include/paraview-%%VERMAJORMINOR%%/pqXYHistogramChartView.h include/paraview-%%VERMAJORMINOR%%/pqYoungsMaterialPropertyWidget.h +include/paraview-%%VERMAJORMINOR%%/pvpythonmodules/pvpythonmodules.h include/paraview-%%VERMAJORMINOR%%/se_create_data.h +include/paraview-%%VERMAJORMINOR%%/vtk2DWidgetRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtk3DLinearGridCrinkleExtractor.h include/paraview-%%VERMAJORMINOR%%/vtk3DLinearGridPlaneCutter.h include/paraview-%%VERMAJORMINOR%%/vtk3DS.h @@ -802,6 +797,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkAffineWidget.h include/paraview-%%VERMAJORMINOR%%/vtkAggregateDataSetFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkAlgorithmOutput.h +include/paraview-%%VERMAJORMINOR%%/vtkAlignImageDataSetFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAllToNRedistributeCompositePolyData.h include/paraview-%%VERMAJORMINOR%%/vtkAllToNRedistributePolyData.h include/paraview-%%VERMAJORMINOR%%/vtkAmoebaMinimizer.h @@ -864,6 +860,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkArrayPrint.h include/paraview-%%VERMAJORMINOR%%/vtkArrayPrint.txx include/paraview-%%VERMAJORMINOR%%/vtkArrayRange.h include/paraview-%%VERMAJORMINOR%%/vtkArrayReader.h +include/paraview-%%VERMAJORMINOR%%/vtkArrayRename.h include/paraview-%%VERMAJORMINOR%%/vtkArraySort.h include/paraview-%%VERMAJORMINOR%%/vtkArrayToTable.h include/paraview-%%VERMAJORMINOR%%/vtkArrayWeights.h @@ -876,9 +873,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkAssemblyPaths.h include/paraview-%%VERMAJORMINOR%%/vtkAssignAttribute.h include/paraview-%%VERMAJORMINOR%%/vtkAssume.h include/paraview-%%VERMAJORMINOR%%/vtkAtom.h +include/paraview-%%VERMAJORMINOR%%/vtkAtomicMutex.h include/paraview-%%VERMAJORMINOR%%/vtkAttributeDataReductionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAttributeDataToFieldDataFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAttributeDataToTableFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkAttributeSmoothingFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAttributesErrorMetric.h include/paraview-%%VERMAJORMINOR%%/vtkAutoCorrelativeStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkAutoInit.h @@ -1060,6 +1059,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkChart.h include/paraview-%%VERMAJORMINOR%%/vtkChartBox.h include/paraview-%%VERMAJORMINOR%%/vtkChartHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkChartLegend.h +include/paraview-%%VERMAJORMINOR%%/vtkChartLogoRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkChartMatrix.h include/paraview-%%VERMAJORMINOR%%/vtkChartParallelCoordinates.h include/paraview-%%VERMAJORMINOR%%/vtkChartPie.h @@ -1146,14 +1146,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataSet.txx include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataSetAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataSetNodeReference.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataSetRange.h -include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataToUnstructuredGridFilter.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataWriter.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeInterpolatedVelocityField.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeMapperHelper2.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeMultiProcessController.h include/paraview-%%VERMAJORMINOR%%/vtkCompositePolyDataMapper.h include/paraview-%%VERMAJORMINOR%%/vtkCompositePolyDataMapper2.h -include/paraview-%%VERMAJORMINOR%%/vtkCompositePolyDataMapper2Internal.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeRGBAPass.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeRenderManager.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeRepresentation.h @@ -1163,17 +1161,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkCompositeZPass.h include/paraview-%%VERMAJORMINOR%%/vtkCompositedSynchronizedRenderers.h include/paraview-%%VERMAJORMINOR%%/vtkCompositer.h include/paraview-%%VERMAJORMINOR%%/vtkCompressCompositer.h +include/paraview-%%VERMAJORMINOR%%/vtkComputeHistogram2DOutliers.h +include/paraview-%%VERMAJORMINOR%%/vtkComputeQuantiles.h include/paraview-%%VERMAJORMINOR%%/vtkComputeQuartiles.h -include/paraview-%%VERMAJORMINOR%%/vtkConditionVariable.h -include/paraview-%%VERMAJORMINOR%%/vtkConduitArrayUtilities.h -include/paraview-%%VERMAJORMINOR%%/vtkConduitSource.h include/paraview-%%VERMAJORMINOR%%/vtkCone.h include/paraview-%%VERMAJORMINOR%%/vtkConeSource.h -include/paraview-%%VERMAJORMINOR%%/vtkConfigure.h -include/paraview-%%VERMAJORMINOR%%/vtkConfigureDeprecated.h include/paraview-%%VERMAJORMINOR%%/vtkConnectedPointsFilter.h include/paraview-%%VERMAJORMINOR%%/vtkConnectivityFilter.h include/paraview-%%VERMAJORMINOR%%/vtkConstrainedPointHandleRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkConstrainedSmoothingFilter.h include/paraview-%%VERMAJORMINOR%%/vtkContext2D.h include/paraview-%%VERMAJORMINOR%%/vtkContext2DScalarBarActor.h include/paraview-%%VERMAJORMINOR%%/vtkContext3D.h @@ -1212,10 +1208,14 @@ include/paraview-%%VERMAJORMINOR%%/vtkConvertSelectionDomain.h include/paraview-%%VERMAJORMINOR%%/vtkConvertToMultiBlockDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkConvertToPartitionedDataSetCollection.h include/paraview-%%VERMAJORMINOR%%/vtkConvertToPointCloud.h +include/paraview-%%VERMAJORMINOR%%/vtkConvertToPolyhedra.h include/paraview-%%VERMAJORMINOR%%/vtkConvexHull2D.h include/paraview-%%VERMAJORMINOR%%/vtkConvexPointSet.h include/paraview-%%VERMAJORMINOR%%/vtkCookieCutter.h include/paraview-%%VERMAJORMINOR%%/vtkCoordinate.h +include/paraview-%%VERMAJORMINOR%%/vtkCoordinateFrame.h +include/paraview-%%VERMAJORMINOR%%/vtkCoordinateFrameRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkCoordinateFrameWidget.h include/paraview-%%VERMAJORMINOR%%/vtkCornerAnnotation.h include/paraview-%%VERMAJORMINOR%%/vtkCorrelativeStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkCountFaces.h @@ -1254,7 +1254,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkDataArray.h include/paraview-%%VERMAJORMINOR%%/vtkDataArrayAccessor.h include/paraview-%%VERMAJORMINOR%%/vtkDataArrayCollection.h include/paraview-%%VERMAJORMINOR%%/vtkDataArrayCollectionIterator.h -include/paraview-%%VERMAJORMINOR%%/vtkDataArrayDispatcher.h include/paraview-%%VERMAJORMINOR%%/vtkDataArrayIteratorMacro.h include/paraview-%%VERMAJORMINOR%%/vtkDataArrayMeta.h include/paraview-%%VERMAJORMINOR%%/vtkDataArrayRange.h @@ -1274,14 +1273,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkDataObjectAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectCollection.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectGenerator.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectReader.h -include/paraview-%%VERMAJORMINOR%%/vtkDataObjectToConduit.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectToDataSetFilter.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectToTable.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectTree.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectTreeInternals.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectTreeIterator.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectTreeRange.h -include/paraview-%%VERMAJORMINOR%%/vtkDataObjectTreeToPointSetFilter.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectTypes.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectWriter.h include/paraview-%%VERMAJORMINOR%%/vtkDataReader.h @@ -1293,7 +1290,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkDataSetAttributesFieldList.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetCellIterator.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetCollection.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetEdgeSubdivisionCriterion.h -include/paraview-%%VERMAJORMINOR%%/vtkDataSetGhostGenerator.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetGradient.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetGradientPrecompute.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetMapper.h @@ -1347,9 +1343,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkDiscreteFlyingEdgesClipper2D.h include/paraview-%%VERMAJORMINOR%%/vtkDiscreteMarchingCubes.h include/paraview-%%VERMAJORMINOR%%/vtkDiscretizableColorTransferFunction.h include/paraview-%%VERMAJORMINOR%%/vtkDiskSource.h -include/paraview-%%VERMAJORMINOR%%/vtkDispatcher.h -include/paraview-%%VERMAJORMINOR%%/vtkDispatcher_Private.h include/paraview-%%VERMAJORMINOR%%/vtkDisplayConfiguration.h +include/paraview-%%VERMAJORMINOR%%/vtkDisplaySizedImplicitPlaneRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkDisplaySizedImplicitPlaneWidget.h include/paraview-%%VERMAJORMINOR%%/vtkDistancePolyDataFilter.h include/paraview-%%VERMAJORMINOR%%/vtkDistanceRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkDistanceRepresentation2D.h @@ -1364,7 +1360,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkDomainsChemistryModule.h include/paraview-%%VERMAJORMINOR%%/vtkDomainsChemistryOpenGL2Module.h include/paraview-%%VERMAJORMINOR%%/vtkDotProductSimilarity.h include/paraview-%%VERMAJORMINOR%%/vtkDoubleArray.h -include/paraview-%%VERMAJORMINOR%%/vtkDoubleDispatcher.h include/paraview-%%VERMAJORMINOR%%/vtkDualDepthPeelingPass.h include/paraview-%%VERMAJORMINOR%%/vtkDummyCommunicator.h include/paraview-%%VERMAJORMINOR%%/vtkDummyController.h @@ -1437,6 +1432,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkExtractBlock.h include/paraview-%%VERMAJORMINOR%%/vtkExtractBlockUsingDataAssembly.h include/paraview-%%VERMAJORMINOR%%/vtkExtractCTHPart.h include/paraview-%%VERMAJORMINOR%%/vtkExtractCells.h +include/paraview-%%VERMAJORMINOR%%/vtkExtractCellsAlongLine.h +include/paraview-%%VERMAJORMINOR%%/vtkExtractCellsAlongPolyLine.h include/paraview-%%VERMAJORMINOR%%/vtkExtractCellsByType.h include/paraview-%%VERMAJORMINOR%%/vtkExtractDataArraysOverTime.h include/paraview-%%VERMAJORMINOR%%/vtkExtractDataOverTime.h @@ -1450,7 +1447,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkExtractGhostCells.h include/paraview-%%VERMAJORMINOR%%/vtkExtractGrid.h include/paraview-%%VERMAJORMINOR%%/vtkExtractHierarchicalBins.h include/paraview-%%VERMAJORMINOR%%/vtkExtractHistogram.h +include/paraview-%%VERMAJORMINOR%%/vtkExtractHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkExtractLevel.h +include/paraview-%%VERMAJORMINOR%%/vtkExtractParticlesOverTime.h include/paraview-%%VERMAJORMINOR%%/vtkExtractPointCloudPiece.h include/paraview-%%VERMAJORMINOR%%/vtkExtractPoints.h include/paraview-%%VERMAJORMINOR%%/vtkExtractPolyDataGeometry.h @@ -1473,7 +1472,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkExtractSelectionRange.h include/paraview-%%VERMAJORMINOR%%/vtkExtractStructuredGridHelper.h include/paraview-%%VERMAJORMINOR%%/vtkExtractSubsetWithSeed.h include/paraview-%%VERMAJORMINOR%%/vtkExtractSurface.h -include/paraview-%%VERMAJORMINOR%%/vtkExtractTemporalFieldData.h include/paraview-%%VERMAJORMINOR%%/vtkExtractTensorComponents.h include/paraview-%%VERMAJORMINOR%%/vtkExtractTimeSteps.h include/paraview-%%VERMAJORMINOR%%/vtkExtractUnstructuredGrid.h @@ -1511,6 +1509,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkFiltersGenericModule.h include/paraview-%%VERMAJORMINOR%%/vtkFiltersGeometryModule.h include/paraview-%%VERMAJORMINOR%%/vtkFiltersHybridModule.h include/paraview-%%VERMAJORMINOR%%/vtkFiltersHyperTreeModule.h +include/paraview-%%VERMAJORMINOR%%/vtkFiltersImagingModule.h include/paraview-%%VERMAJORMINOR%%/vtkFiltersModelingModule.h include/paraview-%%VERMAJORMINOR%%/vtkFiltersOpenTURNSModule.h include/paraview-%%VERMAJORMINOR%%/vtkFiltersParallelDIY2Module.h @@ -1530,6 +1529,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkFiltersTextureModule.h include/paraview-%%VERMAJORMINOR%%/vtkFiltersVerdictModule.h include/paraview-%%VERMAJORMINOR%%/vtkFindCellStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkFiniteDifferenceGradientEstimator.h +include/paraview-%%VERMAJORMINOR%%/vtkFiniteElementFieldDistributor.h include/paraview-%%VERMAJORMINOR%%/vtkFinitePlaneRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkFinitePlaneWidget.h include/paraview-%%VERMAJORMINOR%%/vtkFitImplicitFunction.h @@ -1593,6 +1593,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkGeneralTransform.h include/paraview-%%VERMAJORMINOR%%/vtkGeneralizedKernel.h include/paraview-%%VERMAJORMINOR%%/vtkGenerateGlobalIds.h include/paraview-%%VERMAJORMINOR%%/vtkGenerateIndexArray.h +include/paraview-%%VERMAJORMINOR%%/vtkGenerateTimeSteps.h include/paraview-%%VERMAJORMINOR%%/vtkGenericAdaptorCell.h include/paraview-%%VERMAJORMINOR%%/vtkGenericAttribute.h include/paraview-%%VERMAJORMINOR%%/vtkGenericAttributeCollection.h @@ -1667,11 +1668,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkGroupLeafVertices.h include/paraview-%%VERMAJORMINOR%%/vtkGroupTimeStepsFilter.h include/paraview-%%VERMAJORMINOR%%/vtkH5PartReader.h include/paraview-%%VERMAJORMINOR%%/vtkH5RageReader.h +include/paraview-%%VERMAJORMINOR%%/vtkHDF5ScopedHandle.h include/paraview-%%VERMAJORMINOR%%/vtkHDFReader.h include/paraview-%%VERMAJORMINOR%%/vtkHDRReader.h include/paraview-%%VERMAJORMINOR%%/vtkHandleRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkHandleSource.h include/paraview-%%VERMAJORMINOR%%/vtkHandleWidget.h +include/paraview-%%VERMAJORMINOR%%/vtkHardwarePicker.h include/paraview-%%VERMAJORMINOR%%/vtkHardwareSelector.h include/paraview-%%VERMAJORMINOR%%/vtkHardwareWindow.h include/paraview-%%VERMAJORMINOR%%/vtkHausdorffDistancePointSetFilter.h @@ -1716,11 +1719,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridContour.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridDepthLimiter.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridEntry.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridEvaluateCoarse.h +include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridGeometricLocator.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridGeometry.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridGeometryEntry.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridGeometryLevelEntry.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridGhostCellsGenerator.h +include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridGradient.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridLevelEntry.h +include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridLocator.h +include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridMapper.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridNonOrientedCursor.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridNonOrientedGeometryCursor.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridNonOrientedMooreSuperCursor.h @@ -1733,6 +1740,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridOrientedCursor.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridOrientedGeometryCursor.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridOutlineFilter.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridPlaneCutter.h +include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridPreConfiguredSource.h +include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridProbeFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridScales.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridSource.h include/paraview-%%VERMAJORMINOR%%/vtkHyperTreeGridThreshold.h @@ -1779,6 +1789,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkIOParallelModule.h %%MPI%%include/paraview-%%VERMAJORMINOR%%/vtkIOParallelNetCDFModule.h include/paraview-%%VERMAJORMINOR%%/vtkIOParallelXMLModule.h include/paraview-%%VERMAJORMINOR%%/vtkIOSSReader.h +include/paraview-%%VERMAJORMINOR%%/vtkIOSSWriter.h include/paraview-%%VERMAJORMINOR%%/vtkIOSegYModule.h include/paraview-%%VERMAJORMINOR%%/vtkIOStream.h include/paraview-%%VERMAJORMINOR%%/vtkIOStreamFwd.h @@ -2065,6 +2076,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkJSONImageWriter.h include/paraview-%%VERMAJORMINOR%%/vtkJSONRenderWindowExporter.h include/paraview-%%VERMAJORMINOR%%/vtkJSONSceneExporter.h include/paraview-%%VERMAJORMINOR%%/vtkJavaScriptDataWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkJoinTables.h +include/paraview-%%VERMAJORMINOR%%/vtkJoinTables.txx include/paraview-%%VERMAJORMINOR%%/vtkKCoreDecomposition.h include/paraview-%%VERMAJORMINOR%%/vtkKMeansDistanceFunctor.h include/paraview-%%VERMAJORMINOR%%/vtkKMeansDistanceFunctorCalculator.h @@ -2087,6 +2100,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkLabelHierarchy.h include/paraview-%%VERMAJORMINOR%%/vtkLabelHierarchyAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkLabelHierarchyCompositeIterator.h include/paraview-%%VERMAJORMINOR%%/vtkLabelHierarchyIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkLabelMapLookup.h include/paraview-%%VERMAJORMINOR%%/vtkLabelPlacementMapper.h include/paraview-%%VERMAJORMINOR%%/vtkLabelPlacer.h include/paraview-%%VERMAJORMINOR%%/vtkLabelRenderStrategy.h @@ -2113,6 +2127,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkLeaderActor2D.h include/paraview-%%VERMAJORMINOR%%/vtkLegacy.h include/paraview-%%VERMAJORMINOR%%/vtkLegendBoxActor.h include/paraview-%%VERMAJORMINOR%%/vtkLegendScaleActor.h +include/paraview-%%VERMAJORMINOR%%/vtkLengthDistribution.h include/paraview-%%VERMAJORMINOR%%/vtkLevelIdScalars.h include/paraview-%%VERMAJORMINOR%%/vtkLight.h include/paraview-%%VERMAJORMINOR%%/vtkLightActor.h @@ -2136,6 +2151,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkLinearKernel.h include/paraview-%%VERMAJORMINOR%%/vtkLinearSubdivisionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkLinearToQuadraticCellsFilter.h include/paraview-%%VERMAJORMINOR%%/vtkLinearTransform.h +include/paraview-%%VERMAJORMINOR%%/vtkLinearTransformCellLocator.h include/paraview-%%VERMAJORMINOR%%/vtkLinkEdgels.h include/paraview-%%VERMAJORMINOR%%/vtkLiveInsituLink.h include/paraview-%%VERMAJORMINOR%%/vtkLoadStateOptions.h @@ -2183,6 +2199,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkMapperCollection.h include/paraview-%%VERMAJORMINOR%%/vtkMapperNode.h include/paraview-%%VERMAJORMINOR%%/vtkMarchingContourFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMarchingCubes.h +include/paraview-%%VERMAJORMINOR%%/vtkMarchingCubesPolygonCases.h include/paraview-%%VERMAJORMINOR%%/vtkMarchingCubesTriangleCases.h include/paraview-%%VERMAJORMINOR%%/vtkMarchingSquares.h include/paraview-%%VERMAJORMINOR%%/vtkMarchingSquaresLineCases.h @@ -2261,7 +2278,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkMultiBaselineRegressionTest.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockDataGroupFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockDataSetAlgorithm.h -include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockFromTimeSeriesFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockMergeFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockPLOT3DReader.h include/paraview-%%VERMAJORMINOR%%/vtkMultiBlockUnstructuredGridVolumeMapper.h @@ -2282,13 +2298,14 @@ include/paraview-%%VERMAJORMINOR%%/vtkMultiVolume.h include/paraview-%%VERMAJORMINOR%%/vtkMutableDirectedGraph.h include/paraview-%%VERMAJORMINOR%%/vtkMutableGraphHelper.h include/paraview-%%VERMAJORMINOR%%/vtkMutableUndirectedGraph.h -include/paraview-%%VERMAJORMINOR%%/vtkMutexLock.h include/paraview-%%VERMAJORMINOR%%/vtkNIFTIImageHeader.h include/paraview-%%VERMAJORMINOR%%/vtkNIFTIImageReader.h include/paraview-%%VERMAJORMINOR%%/vtkNIFTIImageWriter.h include/paraview-%%VERMAJORMINOR%%/vtkNamedColors.h +include/paraview-%%VERMAJORMINOR%%/vtkNastranBDFReader.h include/paraview-%%VERMAJORMINOR%%/vtkNetCDFCAMReader.h include/paraview-%%VERMAJORMINOR%%/vtkNetCDFCFReader.h +include/paraview-%%VERMAJORMINOR%%/vtkNetCDFCFWriter.h include/paraview-%%VERMAJORMINOR%%/vtkNetCDFPOPReader.h include/paraview-%%VERMAJORMINOR%%/vtkNetCDFReader.h include/paraview-%%VERMAJORMINOR%%/vtkNetworkAccessManager.h @@ -2337,7 +2354,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkOggTheoraWriter.h include/paraview-%%VERMAJORMINOR%%/vtkOldStyleCallbackCommand.h include/paraview-%%VERMAJORMINOR%%/vtkOpaquePass.h include/paraview-%%VERMAJORMINOR%%/vtkOpenFOAMReader.h -include/paraview-%%VERMAJORMINOR%%/vtkOpenGL.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLActor.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLBillboardTextActor3D.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLBufferObject.h @@ -2360,6 +2376,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkOpenGLGlyph3DHelper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLGlyph3DMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLHardwareSelector.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLHelper.h +include/paraview-%%VERMAJORMINOR%%/vtkOpenGLHyperTreeGridMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLImageAlgorithmHelper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLImageMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLImageSliceMapper.h @@ -2445,6 +2462,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkPCellDataToPointData.h include/paraview-%%VERMAJORMINOR%%/vtkPCellSizeFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPChacoReader.h %%MPI%%include/paraview-%%VERMAJORMINOR%%/vtkPConnectivityFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkPComputeQuantiles.h +include/paraview-%%VERMAJORMINOR%%/vtkPComputeQuartiles.h include/paraview-%%VERMAJORMINOR%%/vtkPContingencyStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkPConvertSelection.h include/paraview-%%VERMAJORMINOR%%/vtkPConvertToMultiBlockDataSet.h @@ -2472,6 +2491,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPExtractSelectedArraysOverTime.h %%MPI%%include/paraview-%%VERMAJORMINOR%%/vtkPExtractVOI.h include/paraview-%%VERMAJORMINOR%%/vtkPGenericEnSightReader.h include/paraview-%%VERMAJORMINOR%%/vtkPHardwareSelector.h +include/paraview-%%VERMAJORMINOR%%/vtkPHyperTreeGridProbeFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPIOReader.h include/paraview-%%VERMAJORMINOR%%/vtkPImageWriter.h include/paraview-%%VERMAJORMINOR%%/vtkPKMeansStatistics.h @@ -2559,6 +2579,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVClientServerSynchronizedRenderers.h include/paraview-%%VERMAJORMINOR%%/vtkPVClientWebModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVClipClosedSurface.h include/paraview-%%VERMAJORMINOR%%/vtkPVClipDataSet.h +include/paraview-%%VERMAJORMINOR%%/vtkPVColorTransferControlPointsItem.h include/paraview-%%VERMAJORMINOR%%/vtkPVComparativeAnimationCue.h include/paraview-%%VERMAJORMINOR%%/vtkPVComparativeView.h include/paraview-%%VERMAJORMINOR%%/vtkPVCompositeDataPipeline.h @@ -2588,6 +2609,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVDataUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkPVDefaultPass.h include/paraview-%%VERMAJORMINOR%%/vtkPVDisableStackTraceSignalHandler.h include/paraview-%%VERMAJORMINOR%%/vtkPVDiscretizableColorTransferFunction.h +include/paraview-%%VERMAJORMINOR%%/vtkPVDisplaySizedImplicitPlaneRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkPVDynamicInitializerPluginInterface.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnSightMasterServerReader.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnSightMasterServerReader2.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnSightMasterServerTranslator.h @@ -2597,7 +2620,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVEnsembleDataReaderInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnvironmentInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnvironmentInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkPVExponentialKeyFrame.h +include/paraview-%%VERMAJORMINOR%%/vtkPVExtractCellsByType.h include/paraview-%%VERMAJORMINOR%%/vtkPVExtractComponent.h +include/paraview-%%VERMAJORMINOR%%/vtkPVExtractHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkPVExtractSelection.h include/paraview-%%VERMAJORMINOR%%/vtkPVExtractVOI.h include/paraview-%%VERMAJORMINOR%%/vtkPVFileInformation.h @@ -2609,7 +2634,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVGUIPluginInterface.h include/paraview-%%VERMAJORMINOR%%/vtkPVGeneralSettings.h include/paraview-%%VERMAJORMINOR%%/vtkPVGeometryFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPVGlyphFilter.h -include/paraview-%%VERMAJORMINOR%%/vtkPVGlyphFilterLegacy.h include/paraview-%%VERMAJORMINOR%%/vtkPVGradientFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPVGridAxes3DActor.h include/paraview-%%VERMAJORMINOR%%/vtkPVGridAxes3DRepresentation.h @@ -2656,6 +2680,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVOrthographicSliceView.h include/paraview-%%VERMAJORMINOR%%/vtkPVPLYWriter.h include/paraview-%%VERMAJORMINOR%%/vtkPVParallelCoordinatesRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkPVPlane.h +include/paraview-%%VERMAJORMINOR%%/vtkPVPlaneCutter.h include/paraview-%%VERMAJORMINOR%%/vtkPVPlotMatrixRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkPVPlotMatrixView.h include/paraview-%%VERMAJORMINOR%%/vtkPVPlotTime.h @@ -2665,6 +2690,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVPluginTracker.h include/paraview-%%VERMAJORMINOR%%/vtkPVPluginsInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVPostFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPVPostFilterExecutive.h +include/paraview-%%VERMAJORMINOR%%/vtkPVProbeLineFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPVProcessWindow.h include/paraview-%%VERMAJORMINOR%%/vtkPVProgressHandler.h include/paraview-%%VERMAJORMINOR%%/vtkPVProminentValuesInformation.h @@ -2717,22 +2743,23 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballRoll.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballRotate.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballZoom.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballZoomToMouse.h +include/paraview-%%VERMAJORMINOR%%/vtkPVTransferFunction2D.h +include/paraview-%%VERMAJORMINOR%%/vtkPVTransferFunction2DBox.h include/paraview-%%VERMAJORMINOR%%/vtkPVTransform.h include/paraview-%%VERMAJORMINOR%%/vtkPVTransposeTable.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrivialProducer.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsAMRModule.h -include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsCGNSWriterModule.h -include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsConduitModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsCoreModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsExtractionModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsExtractionPythonModule.h -%%MPI%%include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsFiltersGeneralMPIModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsFiltersGeneralModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsFiltersMaterialInterfaceModule.h +include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsFiltersParallelDIY2Module.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsFiltersPythonModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsFiltersRenderingModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsFiltersStatisticsModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsIOAMRModule.h +include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsIOCGNSWriterModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsIOCoreModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsIOEnSightModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsIOExodusModule.h @@ -2742,6 +2769,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsIOSPCTHModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsInteractionStyleModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsMiscModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVVTKExtensionsPointsModule.h +include/paraview-%%VERMAJORMINOR%%/vtkPVVersion.h include/paraview-%%VERMAJORMINOR%%/vtkPVView.h include/paraview-%%VERMAJORMINOR%%/vtkPVWebApplication.h include/paraview-%%VERMAJORMINOR%%/vtkPVWebExporter.h @@ -2752,7 +2780,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVXMLParser.h include/paraview-%%VERMAJORMINOR%%/vtkPVXYChartView.h include/paraview-%%VERMAJORMINOR%%/vtkPYoungsMaterialInterface.h include/paraview-%%VERMAJORMINOR%%/vtkPainterCommunicator.h +include/paraview-%%VERMAJORMINOR%%/vtkPairwiseExtractHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkPanoramicProjectionPass.h +include/paraview-%%VERMAJORMINOR%%/vtkParaViewDeprecation.h include/paraview-%%VERMAJORMINOR%%/vtkParallelAMRUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkParallelCoordinatesActor.h include/paraview-%%VERMAJORMINOR%%/vtkParallelCoordinatesInteractorStyle.h @@ -2791,6 +2821,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkParametricSuperEllipsoid.h include/paraview-%%VERMAJORMINOR%%/vtkParametricSuperToroid.h include/paraview-%%VERMAJORMINOR%%/vtkParametricTorus.h include/paraview-%%VERMAJORMINOR%%/vtkParse.h +include/paraview-%%VERMAJORMINOR%%/vtkParseAttributes.h include/paraview-%%VERMAJORMINOR%%/vtkParseData.h include/paraview-%%VERMAJORMINOR%%/vtkParseExtras.h include/paraview-%%VERMAJORMINOR%%/vtkParseHierarchy.h @@ -2817,7 +2848,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkPassArrays.h include/paraview-%%VERMAJORMINOR%%/vtkPassInputTypeAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkPassSelectedArrays.h include/paraview-%%VERMAJORMINOR%%/vtkPassThrough.h -include/paraview-%%VERMAJORMINOR%%/vtkPassThroughFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPath.h include/paraview-%%VERMAJORMINOR%%/vtkPen.h include/paraview-%%VERMAJORMINOR%%/vtkPentagonalPrism.h @@ -2928,6 +2958,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPolyDataMapper2D.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataMapperNode.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataNormals.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataPlaneClipper.h +include/paraview-%%VERMAJORMINOR%%/vtkPolyDataPlaneCutter.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataPointPlacer.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataPointSampler.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataReader.h @@ -2975,6 +3006,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkProgressBarRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkProgressBarSourceRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkProgressBarWidget.h include/paraview-%%VERMAJORMINOR%%/vtkProgressObserver.h +include/paraview-%%VERMAJORMINOR%%/vtkProjectPointsToPlane.h include/paraview-%%VERMAJORMINOR%%/vtkProjectSphereFilter.h include/paraview-%%VERMAJORMINOR%%/vtkProjectedTerrainPath.h include/paraview-%%VERMAJORMINOR%%/vtkProjectedTetrahedraMapper.h @@ -3048,7 +3080,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkQuartileChartRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkQuaternion.h include/paraview-%%VERMAJORMINOR%%/vtkQuaternion.txx include/paraview-%%VERMAJORMINOR%%/vtkQuaternionInterpolator.h -include/paraview-%%VERMAJORMINOR%%/vtkQuerySelectionSource.h include/paraview-%%VERMAJORMINOR%%/vtkRIBExporter.h include/paraview-%%VERMAJORMINOR%%/vtkRIBLight.h include/paraview-%%VERMAJORMINOR%%/vtkRIBProperty.h @@ -3068,7 +3099,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkRawImageFileSeriesReader.h include/paraview-%%VERMAJORMINOR%%/vtkRayCastImageDisplayHelper.h include/paraview-%%VERMAJORMINOR%%/vtkRayCastStructures.h include/paraview-%%VERMAJORMINOR%%/vtkReaderAlgorithm.h -include/paraview-%%VERMAJORMINOR%%/vtkReaderExecutive.h include/paraview-%%VERMAJORMINOR%%/vtkRealtimeAnimationPlayer.h include/paraview-%%VERMAJORMINOR%%/vtkRearrangeFields.h include/paraview-%%VERMAJORMINOR%%/vtkRect.h @@ -3145,6 +3175,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkRenderingCoreEnums.h include/paraview-%%VERMAJORMINOR%%/vtkRenderingCoreModule.h include/paraview-%%VERMAJORMINOR%%/vtkRenderingFreeTypeModule.h include/paraview-%%VERMAJORMINOR%%/vtkRenderingGL2PSOpenGL2Module.h +include/paraview-%%VERMAJORMINOR%%/vtkRenderingHyperTreeGridModule.h include/paraview-%%VERMAJORMINOR%%/vtkRenderingLICOpenGL2Module.h include/paraview-%%VERMAJORMINOR%%/vtkRenderingLabelModule.h include/paraview-%%VERMAJORMINOR%%/vtkRenderingMatplotlibModule.h @@ -3161,6 +3192,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkResampleToImage.h include/paraview-%%VERMAJORMINOR%%/vtkResampleWithDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkResampledAMRImageSource.h include/paraview-%%VERMAJORMINOR%%/vtkReservedRemoteObjectIds.h +include/paraview-%%VERMAJORMINOR%%/vtkReservoirSampler.h include/paraview-%%VERMAJORMINOR%%/vtkResizingWindowToImageFilter.h include/paraview-%%VERMAJORMINOR%%/vtkResliceCursor.h include/paraview-%%VERMAJORMINOR%%/vtkResliceCursorActor.h @@ -3251,6 +3283,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMCompositeTreeDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMCompoundProxyDefinitionLoader.h include/paraview-%%VERMAJORMINOR%%/vtkSMCompoundSourceProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCompoundSourceProxyDefinitionBuilder.h +include/paraview-%%VERMAJORMINOR%%/vtkSMContextItemWidgetProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMContextViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCoreUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkSMDataAssemblyDomain.h @@ -3266,6 +3299,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMDeserializerXMLCache.h include/paraview-%%VERMAJORMINOR%%/vtkSMDimensionsDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMDirectoryProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMDiscreteDoubleDomain.h +include/paraview-%%VERMAJORMINOR%%/vtkSMDisplaySizedImplicitPlaneRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMDocumentation.h include/paraview-%%VERMAJORMINOR%%/vtkSMDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMDomainIterator.h @@ -3312,7 +3346,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMMultiSliceViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMMultiplexerInputDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMMultiplexerSourceProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMNamedPropertyIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkSMNew2DWidgetRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMNewWidgetRepresentationProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMNewWidgetRepresentationProxyAbstract.h include/paraview-%%VERMAJORMINOR%%/vtkSMNullProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMNumberOfComponentsDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMOMETIFFChannelCalculatorInitializationHelper.h @@ -3404,6 +3440,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMTimeKeeperProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMTimeStepIndexDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMTooltipSelectionPipeline.h include/paraview-%%VERMAJORMINOR%%/vtkSMTrace.h +include/paraview-%%VERMAJORMINOR%%/vtkSMTransferFunction2DProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMTransferFunctionManager.h include/paraview-%%VERMAJORMINOR%%/vtkSMTransferFunctionPresets.h include/paraview-%%VERMAJORMINOR%%/vtkSMTransferFunctionProxy.h @@ -3453,12 +3490,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkSectorSource.h include/paraview-%%VERMAJORMINOR%%/vtkSeedRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkSeedWidget.h include/paraview-%%VERMAJORMINOR%%/vtkSegYReader.h +include/paraview-%%VERMAJORMINOR%%/vtkSelectArraysExtractBlocks.h include/paraview-%%VERMAJORMINOR%%/vtkSelectEnclosedPoints.h include/paraview-%%VERMAJORMINOR%%/vtkSelectPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkSelectVisiblePoints.h *** 1538 LINES SKIPPED ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202211172046.2AHKkpxV081305>