mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-15 00:20:35 +05:00
PAL13460 (PAL EDF 301 force the mesh to go through a point)
in LoadNodeColumns(), check IsMedium() on edges only
This commit is contained in:
parent
fe605cfaac
commit
c9fd374088
@ -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<const SMDS_EdgePosition*>( node->GetPosition().get() );
|
||||
|
Loading…
Reference in New Issue
Block a user