From: cconopoima Date: Mon, 15 Jan 2024 10:21:12 +0000 (+0000) Subject: [bos #40505][CEA] Allow assign of 3D Tetra paramam on imported 2D mesh. X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=bdcf8f151aff76aafe97a377fd978fdea36a51fa;p=modules%2Fsmesh.git [bos #40505][CEA] Allow assign of 3D Tetra paramam on imported 2D mesh. --- diff --git a/src/SMESH/SMESH_subMesh.cxx b/src/SMESH/SMESH_subMesh.cxx index fd9da1f0f..18b6c3cdf 100644 --- a/src/SMESH/SMESH_subMesh.cxx +++ b/src/SMESH/SMESH_subMesh.cxx @@ -891,7 +891,10 @@ SMESH_Hypothesis::Hypothesis_Status ret = SMESH_Hypothesis::HYP_INCOMPATIBLE; } else if (!_father->IsUsedHypothesis( anHyp, this )) - ret = SMESH_Hypothesis::HYP_INCOMPATIBLE; + { + if ( anHyp->GetDim() == this->GetAlgo()->GetDim() ) + ret = SMESH_Hypothesis::HYP_INCOMPATIBLE; + } if (SMESH_Hypothesis::IsStatusFatal( ret )) {