diff --git a/src/NETGENPlugin/NETGENPlugin_Mesher.cxx b/src/NETGENPlugin/NETGENPlugin_Mesher.cxx index c90ac17..8587523 100644 --- a/src/NETGENPlugin/NETGENPlugin_Mesher.cxx +++ b/src/NETGENPlugin/NETGENPlugin_Mesher.cxx @@ -1668,12 +1668,11 @@ NETGENPlugin_Mesher::AddSegmentsToMesh(netgen::Mesh& ngMesh, int iPrev = SMESH_MesherHelper::WrapIndex( i-1, nbSegments ); int iNext = SMESH_MesherHelper::WrapIndex( i+1, nbSegments ); double sunH = segLen[ iPrev ] + segLen[ i ] + segLen[ iNext ]; - int nbSeg = ( segLen[ iPrev ] > sunH / 100. + - segLen[ i ] > sunH / 100. + - segLen[ iNext ] > sunH / 100.); - double avgH = sunH / nbSeg; - - RestrictLocalSize( ngMesh, 0.5*(np1+np2), avgH ); + int nbSeg = ( int( segLen[ iPrev ] > sunH / 100.) + + int( segLen[ i ] > sunH / 100.) + + int( segLen[ iNext ] > sunH / 100.)); + if ( nbSeg > 0 ) + RestrictLocalSize( ngMesh, 0.5*(np1+np2), sunH / nbSeg ); } if ( isInternalWire ) {