From: eap Date: Wed, 28 Feb 2007 15:03:48 +0000 (+0000) Subject: PAL13460 (PAL EDF 301 force the mesh to go through a point) X-Git-Tag: V3_2_6a1~21 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c9fd37408814aceafdb133d70557872e225200f4;p=modules%2Fsmesh.git PAL13460 (PAL EDF 301 force the mesh to go through a point) in LoadNodeColumns(), check IsMedium() on edges only --- diff --git a/src/SMESH/SMESH_MesherHelper.cxx b/src/SMESH/SMESH_MesherHelper.cxx index 7cf3b21f1..02627a0e6 100644 --- a/src/SMESH/SMESH_MesherHelper.cxx +++ b/src/SMESH/SMESH_MesherHelper.cxx @@ -951,7 +951,7 @@ bool SMESH_MesherHelper::LoadNodeColumns(TParam2ColumnMap & theParam2ColumnMap, const SMDS_MeshNode* node; while ( nIt->more() ) { node = nIt->next(); - if(IsMedium(node)) + if(IsMedium(node, SMDSAbs_Edge)) continue; const SMDS_EdgePosition* pos = dynamic_cast( node->GetPosition().get() );