From: eap Date: Mon, 10 Jan 2005 12:45:58 +0000 (+0000) Subject: FindCoincidentNodes() now accepts a set of nodes X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=dab18e6dd3f2f6c0fc15e44117fc2fb9543444e0;p=modules%2Fsmesh.git FindCoincidentNodes() now accepts a set of nodes --- diff --git a/src/SMESH_I/SMESH_MeshEditor_i.cxx b/src/SMESH_I/SMESH_MeshEditor_i.cxx index c18cd7dc9..34072c00f 100644 --- a/src/SMESH_I/SMESH_MeshEditor_i.cxx +++ b/src/SMESH_I/SMESH_MeshEditor_i.cxx @@ -681,7 +681,8 @@ void SMESH_MeshEditor_i::FindCoincidentNodes (CORBA::Double Tol { ::SMESH_MeshEditor::TListOfListOfNodes aListOfListOfNodes; ::SMESH_MeshEditor anEditor( _myMesh ); - anEditor.FindCoincidentNodes( Tolerance, aListOfListOfNodes ); + set nodes; // no input nodes + anEditor.FindCoincidentNodes( nodes, Tolerance, aListOfListOfNodes ); GroupsOfNodes = new SMESH::array_of_long_array; GroupsOfNodes->length( aListOfListOfNodes.size() );