From f49e53db8697439f6c7806504354bf34031638d5 Mon Sep 17 00:00:00 2001 From: Jacques-Bernard Lekien Date: Wed, 27 Mar 2024 08:24:03 -0400 Subject: [PATCH 1/3] add parameter xml in htg depth limiter --- .../Resources/filters_filtershypertree.xml | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/Remoting/Application/Resources/filters_filtershypertree.xml b/Remoting/Application/Resources/filters_filtershypertree.xml index 40beec0927e..8ab9072b06c 100644 --- a/Remoting/Application/Resources/filters_filtershypertree.xml +++ b/Remoting/Application/Resources/filters_filtershypertree.xml @@ -81,6 +81,12 @@ output grid is guaranteed to contain that of the input tree, but the former might be strictly larger than the latter. This is not a bug but an expected behavior of which the user should be aware. + Note that this geometric extension of the output grid is linked to + the fact that we display a coarse cell in place of its daughter cells. + The value retained is then that which was assigned to the coarse cell. + This value can be modified by the vtkHyperTreeGridEvaluateCoarse filter + which allows the value of the coarse cells to be recalculated using + different operating modes. @@ -97,11 +103,25 @@ default_values="0" number_of_elements="1"> - Maximum depth to which the output grid should be limited. + Maximum inclusive depth to which the exit grille must be limited. + The smallest value is 0. + + + If enabled, applying this option will cause a setting to be placed + that will limit the depth travel of the sliders. This avoids + consuming additional memory. + Not activating this option allows you to produce a new smaller mesh, + for example when saving. + + + -- GitLab From 60061e3a5a1e4aaa270aabb7ad26405a5b390e8a Mon Sep 17 00:00:00 2001 From: Jacques-Bernard Lekien Date: Wed, 27 Mar 2024 10:15:52 -0400 Subject: [PATCH 2/3] add doc release --- .../dev/add-htg-depth-limiter-parameter-in-gui.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Documentation/release/dev/add-htg-depth-limiter-parameter-in-gui.md diff --git a/Documentation/release/dev/add-htg-depth-limiter-parameter-in-gui.md b/Documentation/release/dev/add-htg-depth-limiter-parameter-in-gui.md new file mode 100644 index 00000000000..ed769fd60da --- /dev/null +++ b/Documentation/release/dev/add-htg-depth-limiter-parameter-in-gui.md @@ -0,0 +1,9 @@ +## Add parameter xml in htg depth limiter + +Added the JustMarkTheDepthLimiter parameter to the Properties of the vtkHyperTreeGridDepthLimiter filter in the ParaView GUI. + +Activation or not results in a call to the SetJustCreateNewMask method. +If enabled, applying this option will cause a setting to be placed that will limit the depth travel of the sliders. This avoids consuming additional memory. Not activating this option allows you to produce a new smaller mesh, for example when saving. +SaveData does not take into account the value of the depth render controller. If you want to store a reduced mesh in depth, you must deactivate this new option. + +Improved documentation. -- GitLab From ef422f26aee5ea96e460e080e52a81224c2d3baf Mon Sep 17 00:00:00 2001 From: Jacques-Bernard Lekien Date: Thu, 28 Mar 2024 09:23:35 -0400 Subject: [PATCH 3/3] fix doc htg depoth limiter config xml --- .../Application/Resources/filters_filtershypertree.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Remoting/Application/Resources/filters_filtershypertree.xml b/Remoting/Application/Resources/filters_filtershypertree.xml index 8ab9072b06c..af6709d5bc4 100644 --- a/Remoting/Application/Resources/filters_filtershypertree.xml +++ b/Remoting/Application/Resources/filters_filtershypertree.xml @@ -81,9 +81,9 @@ output grid is guaranteed to contain that of the input tree, but the former might be strictly larger than the latter. This is not a bug but an expected behavior of which the user should be aware. - Note that this geometric extension of the output grid is linked to - the fact that we display a coarse cell in place of its daughter cells. - The value retained is then that which was assigned to the coarse cell. + These geometric expansions in the output grid can be explained by + the display of coarse cells in place of its daugther cells. + The value retained is the one initially assigned to the coarse cell. This value can be modified by the vtkHyperTreeGridEvaluateCoarse filter which allows the value of the coarse cells to be recalculated using different operating modes. @@ -103,7 +103,7 @@ default_values="0" number_of_elements="1"> - Maximum inclusive depth to which the exit grille must be limited. + Maximum inclusive depth to which the output grid must be limited. The smallest value is 0.