0021489: EDF 2096: Regression in Prism algorithm between 6.3.1 and 6.4.0

fix LoadNodeColumns()
This commit is contained in:
eap 2012-02-09 12:30:06 +00:00
parent fda2d7b99e
commit 7a57f9da6e

View File

@ -1695,7 +1695,7 @@ bool SMESH_MesherHelper::LoadNodeColumns(TParam2ColumnMap & theParam2
double f, l; double f, l;
BRep_Tool::Range( *edge, f, l ); BRep_Tool::Range( *edge, f, l );
if ( edge->Orientation() == TopAbs_REVERSED ) std::swap( 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; const double prevPar = theParam2ColumnMap.empty() ? 0 : theParam2ColumnMap.rbegin()->first;
map< double, const SMDS_MeshNode*>::iterator u_n = sortedBaseNodes.begin(); map< double, const SMDS_MeshNode*>::iterator u_n = sortedBaseNodes.begin();
for ( ; u_n != sortedBaseNodes.end(); u_n++ ) for ( ; u_n != sortedBaseNodes.end(); u_n++ )