update rect mesh region for postprocess

This commit is contained in:
wanqing0421
2025-06-03 10:55:47 +08:00
parent 21a7d0ab4d
commit a18936c8ec
5 changed files with 304 additions and 0 deletions

View File

@ -26,6 +26,7 @@ Licence:
#include "sphereRegionPoints.hpp"
#include "lineRegionPoints.hpp"
#include "multipleSpheresRegionPoints.hpp"
#include "rectMeshRegionPoints.hpp"
namespace pFlow::postprocessData
{
@ -37,6 +38,10 @@ template class PostprocessComponentGaussian<multipleSpheresRegionPoints>;
template class PostprocessComponentUniform<multipleSpheresRegionPoints>;
template class PostprocessComponentArithmetic<multipleSpheresRegionPoints>;
template class PostprocessComponentGaussian<rectMeshRegionPoints>;
template class PostprocessComponentUniform<rectMeshRegionPoints>;
template class PostprocessComponentArithmetic<rectMeshRegionPoints>;
template class PostprocessComponentGaussian<lineRegionPoints>;
template class PostprocessComponentUniform<lineRegionPoints>;
template class PostprocessComponentArithmetic<lineRegionPoints>;