From: eap Date: Wed, 30 Jan 2013 07:34:10 +0000 (+0000) Subject: 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm X-Git-Tag: V6_main_FINAL~13 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=47fa9dbaa17e65e898e7cc98d43848e995d6cfbc;p=plugins%2Fnetgenplugin.git 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm arg theFirstVertex of SMESH_Block::GetOrderedEdges() became optional --- diff --git a/src/NETGENPlugin/NETGENPlugin_Mesher.cxx b/src/NETGENPlugin/NETGENPlugin_Mesher.cxx index 10243fe..e3cc305 100644 --- a/src/NETGENPlugin/NETGENPlugin_Mesher.cxx +++ b/src/NETGENPlugin/NETGENPlugin_Mesher.cxx @@ -320,10 +320,9 @@ namespace map< SMESH_subMesh*, set< int > >& addedEdgeSM2Faces) { // get ordered EDGEs - TopoDS_Vertex v1; list< TopoDS_Edge > edges; list< int > nbEdgesInWire; - int nbWires = SMESH_Block::GetOrderedEdges( face, edges, nbEdgesInWire, v1 ); + int nbWires = SMESH_Block::GetOrderedEdges( face, edges, nbEdgesInWire); // find within list< TopoDS_Edge >::iterator eItFwd = edges.begin();