1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00

OCC22163 The bug is appendix to the Salome Bug 0020982

This commit is contained in:
PKV 2011-04-28 15:41:57 +00:00 committed by bugmaster
parent a855b7eb8b
commit e520f87c1c
2 changed files with 515 additions and 682 deletions

File diff suppressed because it is too large Load Diff

View File

@ -8,6 +8,9 @@
#include <TopOpeBRepBuild_FaceBuilder.hxx>
#include <TopOpeBRepBuild_define.hxx>
#include <BRep_Tool.hxx>
#include <BRep_Builder.hxx>
#ifdef DEB
Standard_IMPORT Standard_Boolean TopOpeBRepBuild_GettraceCU();
Standard_IMPORT Standard_Boolean TopOpeBRepBuild_GettraceCUV();
@ -24,16 +27,29 @@ Standard_IMPORT Standard_Boolean TopOpeBRepBuild_GettraceSHEX();
void TopOpeBRepBuild_Builder::BuildFaces(const Standard_Integer iS,
const Handle(TopOpeBRepDS_HDataStructure)& HDS)
{
Standard_Real aTBSTol, aTBCTol;
BRep_Builder aBB;
TopoDS_Shape aFace;
myBuildTool.MakeFace(aFace,HDS->Surface(iS));
TopOpeBRepBuild_WireEdgeSet WES(aFace,this);
//
//modified by NIZNHY-PKV Mon Dec 13 10:00:23 2010f
const TopOpeBRepDS_Surface& aTBS=HDS->Surface(iS);
aTBSTol=aTBS.Tolerance();
//
myBuildTool.MakeFace(aFace, aTBS);
//
//myBuildTool.MakeFace(aFace,HDS->Surface(iS));
//modified by NIZNHY-PKV Mon Dec 13 10:01:03 2010t
//
TopOpeBRepBuild_WireEdgeSet WES(aFace, this);
//
#ifdef DEB
Standard_Boolean tSE = TopOpeBRepBuild_GettraceSPF();
Standard_Boolean tCU = TopOpeBRepBuild_GettraceCU();
Standard_Boolean NtCUV = !TopOpeBRepBuild_GettraceCUV();
#endif
for (TopOpeBRepDS_CurveIterator SCurves(HDS->SurfaceCurves(iS));
SCurves.More(); SCurves.Next()) {
//
TopOpeBRepDS_CurveIterator SCurves(HDS->SurfaceCurves(iS));
for (; SCurves.More(); SCurves.Next()) {
Standard_Integer iC = SCurves.Current();
const TopOpeBRepDS_Curve& CDS = HDS->Curve(iC);
#ifdef DEB
@ -41,10 +57,16 @@ void TopOpeBRepBuild_Builder::BuildFaces(const Standard_Integer iS,
if (tCU) { CDS.Dump(cout,iC,NtCUV); cout<<endl; }
#endif
TopoDS_Shape anEdge;
for (TopTools_ListIteratorOfListOfShape Iti(NewEdges(iC));
Iti.More();
Iti.Next()) {
TopTools_ListIteratorOfListOfShape Iti(NewEdges(iC));
for (; Iti.More(); Iti.Next()) {
anEdge = Iti.Value();
//modified by NIZNHY-PKV Mon Dec 13 10:09:38 2010f
TopoDS_Edge& aE=*((TopoDS_Edge*)&anEdge);
aTBCTol=BRep_Tool::Tolerance(aE);
if (aTBCTol < aTBSTol) {
aBB.UpdateEdge(aE, aTBSTol);
}
//modified by NIZNHY-PKV Mon Dec 13 10:09:43 2010f
TopAbs_Orientation ori = SCurves.Orientation(TopAbs_IN);
myBuildTool.Orientation(anEdge,ori);
const Handle(Geom2d_Curve)& PC = SCurves.PCurve();
@ -52,6 +74,7 @@ void TopOpeBRepBuild_Builder::BuildFaces(const Standard_Integer iS,
WES.AddStartElement(anEdge);
}
}
//
TopOpeBRepBuild_FaceBuilder FABU(WES,aFace);
TopTools_ListOfShape& FaceList = ChangeNewFaces(iS);
MakeFaces(aFace,FABU,FaceList);