mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 10:08:34 +05:00
0021489: EDF 2096: Regression in Prism algorithm between 6.3.1 and 6.4.0
fix LoadNodeColumns()
This commit is contained in:
parent
fda2d7b99e
commit
7a57f9da6e
@ -1695,7 +1695,7 @@ bool SMESH_MesherHelper::LoadNodeColumns(TParam2ColumnMap & theParam2
|
||||
double f, l;
|
||||
BRep_Tool::Range( *edge, f, l );
|
||||
if ( edge->Orientation() == TopAbs_REVERSED ) std::swap( f, l );
|
||||
const double coeff = 1. / ( l - f ) / length[iE] / fullLen;
|
||||
const double coeff = 1. / ( l - f ) * length[iE] / fullLen;
|
||||
const double prevPar = theParam2ColumnMap.empty() ? 0 : theParam2ColumnMap.rbegin()->first;
|
||||
map< double, const SMDS_MeshNode*>::iterator u_n = sortedBaseNodes.begin();
|
||||
for ( ; u_n != sortedBaseNodes.end(); u_n++ )
|
||||
|
Loading…
Reference in New Issue
Block a user