PAL19276 ExportMED does not work when the mesh is too big

if (type == SMDSAbs_Face)
       vTool.GetAllExistingFaces( myElems );
     else
-      vTool.GetAllExistingFaces( myElems );
+      vTool.GetAllExistingEdges( myElems );
   }
     Minimize momory usage at writting mesh to med file
This commit is contained in:
eap 2008-03-20 13:10:50 +00:00
parent 8dd1291a68
commit 44b7358139

View 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(); }