mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-22 13:50:35 +05:00
Mantis issue 0021486: EDF GEOM: Non regression test fails (MakePartition). A fix by Peter Kurnev.
This commit is contained in:
parent
dbca9b56bb
commit
6175043630
@ -104,6 +104,11 @@ static
|
|||||||
const Standard_Integer ,
|
const Standard_Integer ,
|
||||||
NMTTools_IndexedDataMapOfIndexedMapOfInteger& );
|
NMTTools_IndexedDataMapOfIndexedMapOfInteger& );
|
||||||
|
|
||||||
|
//modified by NIZNHY-PKV Thu Feb 16 12:24:52 2012f
|
||||||
|
static
|
||||||
|
Standard_Boolean IsClosed(const TopoDS_Edge& aE,
|
||||||
|
const TopoDS_Face& aF);
|
||||||
|
//modified by NIZNHY-PKV Thu Feb 16 12:24:56 2012t
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : FillImagesFaces
|
//function : FillImagesFaces
|
||||||
@ -314,7 +319,10 @@ void GEOMAlgo_Builder::BuildSplitFaces()
|
|||||||
}
|
}
|
||||||
//
|
//
|
||||||
bIsDegenerated=BRep_Tool::Degenerated(aE);
|
bIsDegenerated=BRep_Tool::Degenerated(aE);
|
||||||
bIsClosed=BRep_Tool::IsClosed(aE, aF);
|
//modified by NIZNHY-PKV Thu Feb 16 12:25:04 2012f
|
||||||
|
bIsClosed=IsClosed(aE, aF);
|
||||||
|
//bIsClosed=BRep_Tool::IsClosed(aE, aF);
|
||||||
|
//modified by NIZNHY-PKV Thu Feb 16 12:25:09 2012t
|
||||||
//
|
//
|
||||||
const TopTools_ListOfShape& aLIE=myImages.Image(aE);
|
const TopTools_ListOfShape& aLIE=myImages.Image(aE);
|
||||||
aIt.Initialize(aLIE);
|
aIt.Initialize(aLIE);
|
||||||
@ -960,6 +968,35 @@ void UpdateCandidates(const Standard_Integer theNF,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//modified by NIZNHY-PKV Thu Feb 16 12:25:16 2012f
|
||||||
|
//=======================================================================
|
||||||
|
//function : IsClosed
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
Standard_Boolean IsClosed(const TopoDS_Edge& aE,
|
||||||
|
const TopoDS_Face& aF)
|
||||||
|
{
|
||||||
|
Standard_Boolean bRet;
|
||||||
|
//
|
||||||
|
bRet=BRep_Tool::IsClosed(aE, aF);
|
||||||
|
if (bRet) {
|
||||||
|
TopTools_MapOfShape aM;
|
||||||
|
TopExp_Explorer aExp(aF, TopAbs_EDGE);
|
||||||
|
for (; aExp.More(); aExp.Next()) {
|
||||||
|
const TopoDS_Shape& aEx=aExp.Current();
|
||||||
|
//
|
||||||
|
if (aM.Add(aEx)) {
|
||||||
|
if (aEx.IsSame(aE)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bRet=!bRet;
|
||||||
|
}
|
||||||
|
return bRet;
|
||||||
|
}
|
||||||
|
//modified by NIZNHY-PKV Thu Feb 16 12:25:25 2012t
|
||||||
|
|
||||||
/*
|
/*
|
||||||
{
|
{
|
||||||
TopoDS_Compound aCx;
|
TopoDS_Compound aCx;
|
||||||
|
Loading…
Reference in New Issue
Block a user