PAL7933. enable propagation of local hypotheses assigned to super-shapes

This commit is contained in:
eap 2005-02-04 11:08:26 +00:00
parent 9b3ccd683e
commit f1bd9084e0

View File

@ -505,7 +505,9 @@ const list <const SMESHDS_Hypothesis *> & StdMeshers_Regular_1D::GetUsedHypothes
aMesh.IsPropagatedHypothesis(aShape, _mainEdge))
{
// Propagation of 1D hypothesis from <aMainEdge> on this edge
_usedHypList = GetAppliedHypothesis(aMesh, _mainEdge); // copy
//_usedHypList = GetAppliedHypothesis(aMesh, _mainEdge); // copy
// use a general method in order not to nullify _mainEdge
_usedHypList = SMESH_Algo::GetUsedHypothesis(aMesh, _mainEdge); // copy
nbHyp = _usedHypList.size();
}
}