From: eap Date: Wed, 26 Jan 2011 13:40:27 +0000 (+0000) Subject: 0021134: EDF 1749 GHS3D: GHS3D can't compute the 3D elements from 2D skin elements X-Git-Tag: StartingPortingMED3~117 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=812e5de47fc21bda0e59e798bb8eb1f7e2324a46;p=modules%2Fsmesh.git 0021134: EDF 1749 GHS3D: GHS3D can't compute the 3D elements from 2D skin elements Fix SplitVolumesIntoTetra() taking into account changed behavior of the complex SMESHDS_SubMesh --- diff --git a/src/SMESH/SMESH_MeshEditor.cxx b/src/SMESH/SMESH_MeshEditor.cxx index a0434ebfc..48784b5f2 100644 --- a/src/SMESH/SMESH_MeshEditor.cxx +++ b/src/SMESH/SMESH_MeshEditor.cxx @@ -1569,8 +1569,8 @@ void SMESH_MeshEditor::SplitVolumesIntoTetra (const TIDSortedElemSet & theElems, SMDS_VolumeTool volTool; SMESH_MesherHelper helper( *GetMesh()); - SMESHDS_SubMesh* subMesh = GetMeshDS()->MeshElements(1); - SMESHDS_SubMesh* fSubMesh = subMesh; + SMESHDS_SubMesh* subMesh = 0;//GetMeshDS()->MeshElements(1); + SMESHDS_SubMesh* fSubMesh = 0;//subMesh; SMESH_SequenceOfElemPtr newNodes, newElems;