Salome HOME
PAL19276 ExportMED does not work when the mesh is too big
authoreap <eap@opencascade.com>
Thu, 20 Mar 2008 13:10:45 +0000 (13:10 +0000)
committereap <eap@opencascade.com>
Thu, 20 Mar 2008 13:10:45 +0000 (13:10 +0000)
     if (type == SMDSAbs_Face)
       vTool.GetAllExistingFaces( myElems );
     else
-      vTool.GetAllExistingFaces( myElems );
+      vTool.GetAllExistingEdges( myElems );
   }
     Minimize momory usage at writting mesh to med file

src/SMDS/SMDS_PolyhedralVolumeOfNodes.cxx

index c91f3762752cc06a1d1d7e38cebabc466a6dc8ef..2f330da673e38aad355c42eb343291588bbd9f93 100644 (file)
@@ -204,7 +204,7 @@ public:
     if (type == SMDSAbs_Face)
       vTool.GetAllExistingFaces( myElems );
     else
-      vTool.GetAllExistingFaces( myElems );
+      vTool.GetAllExistingEdges( myElems );
   }
   /// Return true if and only if there are other object in this iterator
   virtual bool more() { return myIndex < myElems.size(); }