mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-16 02:28:35 +05:00
321 lines
11 KiB
C++
321 lines
11 KiB
C++
// File: BlockFix_UnionEdges.cxx
|
|
// Created: 07.12.04 15:27:30
|
|
// Author: Sergey KUUL
|
|
|
|
|
|
#include <BlockFix_UnionEdges.ixx>
|
|
|
|
#include <Approx_Curve3d.hxx>
|
|
#include <BRepAdaptor_HCompCurve.hxx>
|
|
#include <BRep_Builder.hxx>
|
|
#include <BRep_Tool.hxx>
|
|
#include <GC_MakeCircle.hxx>
|
|
#include <Geom_BSplineCurve.hxx>
|
|
#include <Geom_Circle.hxx>
|
|
#include <Geom_Curve.hxx>
|
|
#include <Geom_Line.hxx>
|
|
#include <Geom_TrimmedCurve.hxx>
|
|
#include <ShapeAnalysis_Edge.hxx>
|
|
#include <ShapeFix_Edge.hxx>
|
|
#include <ShapeFix_Face.hxx>
|
|
#include <ShapeFix_Shell.hxx>
|
|
#include <TColgp_SequenceOfPnt.hxx>
|
|
#include <TColStd_MapOfInteger.hxx>
|
|
#include <TopExp.hxx>
|
|
#include <TopExp_Explorer.hxx>
|
|
#include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
|
|
#include <TopTools_IndexedMapOfShape.hxx>
|
|
#include <TopTools_ListOfShape.hxx>
|
|
#include <TopTools_MapOfShape.hxx>
|
|
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
|
#include <TopTools_SequenceOfShape.hxx>
|
|
#include <TopoDS.hxx>
|
|
#include <TopoDS_Edge.hxx>
|
|
#include <TopoDS_Face.hxx>
|
|
#include <TopoDS_Shell.hxx>
|
|
#include <TopoDS_Solid.hxx>
|
|
#include <TopoDS_Vertex.hxx>
|
|
#include <TopoDS_Iterator.hxx>
|
|
|
|
|
|
//=======================================================================
|
|
//function : BlockFix_UnionEdges()
|
|
//purpose : Constructor
|
|
//=======================================================================
|
|
|
|
BlockFix_UnionEdges::BlockFix_UnionEdges ( )
|
|
{
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : MergeEdges
|
|
//purpose : auxilary
|
|
//=======================================================================
|
|
static Standard_Boolean MergeEdges(const TopTools_SequenceOfShape& SeqEdges,
|
|
const TopoDS_Face& aFace,
|
|
const Standard_Real Tol,
|
|
TopoDS_Edge& anEdge)
|
|
{
|
|
// make chain for union
|
|
BRep_Builder B;
|
|
ShapeAnalysis_Edge sae;
|
|
TopoDS_Edge FirstE = TopoDS::Edge(SeqEdges.Value(1));
|
|
TopoDS_Edge LastE = FirstE;
|
|
TopoDS_Vertex VF = sae.FirstVertex(FirstE);
|
|
TopoDS_Vertex VL = sae.LastVertex(LastE);
|
|
TopTools_SequenceOfShape aChain;
|
|
aChain.Append(FirstE);
|
|
TColStd_MapOfInteger IndUsedEdges;
|
|
IndUsedEdges.Add(1);
|
|
Standard_Integer j;
|
|
for(j=2; j<=SeqEdges.Length(); j++) {
|
|
for(Standard_Integer k=2; k<=SeqEdges.Length(); k++) {
|
|
if(IndUsedEdges.Contains(k)) continue;
|
|
TopoDS_Edge edge = TopoDS::Edge(SeqEdges.Value(k));
|
|
TopoDS_Vertex VF2 = sae.FirstVertex(edge);
|
|
TopoDS_Vertex VL2 = sae.LastVertex(edge);
|
|
if(sae.FirstVertex(edge).IsSame(VL)) {
|
|
aChain.Append(edge);
|
|
LastE = edge;
|
|
VL = sae.LastVertex(LastE);
|
|
IndUsedEdges.Add(k);
|
|
}
|
|
else if(sae.LastVertex(edge).IsSame(VF)) {
|
|
aChain.Prepend(edge);
|
|
FirstE = edge;
|
|
VF = sae.FirstVertex(FirstE);
|
|
IndUsedEdges.Add(k);
|
|
}
|
|
}
|
|
}
|
|
if(aChain.Length()<SeqEdges.Length()) {
|
|
cout<<"can not create correct chain..."<<endl;
|
|
return Standard_False;
|
|
}
|
|
// union edges in chain
|
|
// first step: union lines and circles
|
|
TopLoc_Location Loc;
|
|
Standard_Real fp1,lp1,fp2,lp2;
|
|
for(j=1; j<aChain.Length(); j++) {
|
|
TopoDS_Edge edge1 = TopoDS::Edge(aChain.Value(j));
|
|
Handle(Geom_Curve) c3d1 = BRep_Tool::Curve(edge1,Loc,fp1,lp1);
|
|
if(c3d1.IsNull()) break;
|
|
while(c3d1->IsKind(STANDARD_TYPE(Geom_TrimmedCurve))) {
|
|
Handle(Geom_TrimmedCurve) tc =
|
|
Handle(Geom_TrimmedCurve)::DownCast(c3d1);
|
|
c3d1 = tc->BasisCurve();
|
|
}
|
|
TopoDS_Edge edge2 = TopoDS::Edge(aChain.Value(j+1));
|
|
Handle(Geom_Curve) c3d2 = BRep_Tool::Curve(edge2,Loc,fp2,lp2);
|
|
if(c3d2.IsNull()) break;
|
|
while(c3d2->IsKind(STANDARD_TYPE(Geom_TrimmedCurve))) {
|
|
Handle(Geom_TrimmedCurve) tc =
|
|
Handle(Geom_TrimmedCurve)::DownCast(c3d2);
|
|
c3d2 = tc->BasisCurve();
|
|
}
|
|
if( c3d1->IsKind(STANDARD_TYPE(Geom_Line)) && c3d2->IsKind(STANDARD_TYPE(Geom_Line)) ) {
|
|
// union lines
|
|
Handle(Geom_Line) L1 = Handle(Geom_Line)::DownCast(c3d1);
|
|
Handle(Geom_Line) L2 = Handle(Geom_Line)::DownCast(c3d2);
|
|
gp_Dir Dir1 = L1->Position().Direction();
|
|
gp_Dir Dir2 = L2->Position().Direction();
|
|
if(!Dir1.IsEqual(Dir2,Precision::Angular())) continue;
|
|
// can union lines => create new edge
|
|
TopoDS_Vertex V1 = sae.FirstVertex(edge1);
|
|
gp_Pnt PV1 = BRep_Tool::Pnt(V1);
|
|
TopoDS_Vertex V2 = sae.LastVertex(edge2);
|
|
gp_Pnt PV2 = BRep_Tool::Pnt(V2);
|
|
gp_Vec Vec(PV1,PV2);
|
|
Handle(Geom_Line) L = new Geom_Line(gp_Ax1(PV1,Vec));
|
|
Standard_Real dist = PV1.Distance(PV2);
|
|
Handle(Geom_TrimmedCurve) tc = new Geom_TrimmedCurve(L,0.0,dist);
|
|
TopoDS_Edge E;
|
|
B.MakeEdge (E,tc,Precision::Confusion());
|
|
B.Add (E,V1); B.Add (E,V2);
|
|
B.UpdateVertex(V1, 0., E, 0.);
|
|
B.UpdateVertex(V2, dist, E, 0.);
|
|
ShapeFix_Edge sfe;
|
|
sfe.FixAddPCurve(E,aFace,Standard_False);
|
|
sfe.FixSameParameter(E);
|
|
aChain.Remove(j);
|
|
aChain.SetValue(j,E);
|
|
j--;
|
|
}
|
|
if( c3d1->IsKind(STANDARD_TYPE(Geom_Circle)) && c3d2->IsKind(STANDARD_TYPE(Geom_Circle)) ) {
|
|
// union circles
|
|
Handle(Geom_Circle) C1 = Handle(Geom_Circle)::DownCast(c3d1);
|
|
Handle(Geom_Circle) C2 = Handle(Geom_Circle)::DownCast(c3d2);
|
|
gp_Pnt P01 = C1->Location();
|
|
gp_Pnt P02 = C2->Location();
|
|
if(P01.Distance(P02)>Precision::Confusion()) continue;
|
|
// can union circles => create new edge
|
|
TopoDS_Vertex V1 = sae.FirstVertex(edge1);
|
|
gp_Pnt PV1 = BRep_Tool::Pnt(V1);
|
|
TopoDS_Vertex V2 = sae.LastVertex(edge2);
|
|
gp_Pnt PV2 = BRep_Tool::Pnt(V2);
|
|
TopoDS_Vertex VM = sae.LastVertex(edge1);
|
|
gp_Pnt PVM = BRep_Tool::Pnt(VM);
|
|
GC_MakeCircle MC(PV1,PVM,PV2);
|
|
Handle(Geom_Circle) C = MC.Value();
|
|
gp_Pnt P0 = C->Location();
|
|
gp_Dir D1(gp_Vec(P0,PV1));
|
|
gp_Dir D2(gp_Vec(P0,PV2));
|
|
Standard_Real fpar = C->XAxis().Direction().Angle(D1);
|
|
Standard_Real lpar = C->XAxis().Direction().Angle(D2);
|
|
Handle(Geom_TrimmedCurve) tc = new Geom_TrimmedCurve(C,fpar,lpar);
|
|
TopoDS_Edge E;
|
|
B.MakeEdge (E,tc,Precision::Confusion());
|
|
B.Add (E,V1); B.Add (E,V2);
|
|
B.UpdateVertex(V1, fpar, E, 0.);
|
|
B.UpdateVertex(V2, lpar, E, 0.);
|
|
ShapeFix_Edge sfe;
|
|
sfe.FixAddPCurve(E,aFace,Standard_False);
|
|
sfe.FixSameParameter(E);
|
|
aChain.Remove(j);
|
|
aChain.SetValue(j,E);
|
|
j--;
|
|
}
|
|
}
|
|
if(j<aChain.Length()) {
|
|
cout<<"null curve3d in edge..."<<endl;
|
|
return Standard_False;
|
|
}
|
|
if(aChain.Length()>1) {
|
|
// second step: union edges with various curves
|
|
cout<<"can not make analitical union => make approximation"<<endl;
|
|
TopoDS_Wire W;
|
|
B.MakeWire(W);
|
|
for(j=1; j<=aChain.Length(); j++) {
|
|
TopoDS_Edge edge = TopoDS::Edge(aChain.Value(j));
|
|
B.Add(W,edge);
|
|
}
|
|
Handle(BRepAdaptor_HCompCurve) Adapt = new BRepAdaptor_HCompCurve(W);
|
|
Approx_Curve3d Conv(Adapt,Tol,GeomAbs_C1,9,1000);
|
|
Handle(Geom_BSplineCurve) bc = Conv.Curve();
|
|
TopoDS_Edge E;
|
|
B.MakeEdge (E,bc,Precision::Confusion());
|
|
B.Add (E,VF);
|
|
B.Add (E,VL);
|
|
aChain.SetValue(1,E);
|
|
}
|
|
|
|
anEdge = TopoDS::Edge(aChain.Value(1));
|
|
return Standard_True;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Perform
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
TopoDS_Shape BlockFix_UnionEdges::Perform(const TopoDS_Shape& Shape,
|
|
const Standard_Real Tol)
|
|
{
|
|
myContext = new ShapeBuild_ReShape;
|
|
myTolerance = Tol;
|
|
TopoDS_Shape aResult = myContext->Apply(Shape);
|
|
|
|
// processing each solid
|
|
TopExp_Explorer exps;
|
|
for(exps.Init(Shape, TopAbs_SOLID); exps.More(); exps.Next()) {
|
|
TopoDS_Solid aSolid = TopoDS::Solid(exps.Current());
|
|
|
|
TopTools_IndexedMapOfShape ChangedFaces;
|
|
|
|
// creating map of edge faces
|
|
TopTools_IndexedDataMapOfShapeListOfShape aMapEdgeFaces;
|
|
TopExp::MapShapesAndAncestors(aSolid, TopAbs_EDGE, TopAbs_FACE, aMapEdgeFaces);
|
|
|
|
Handle(ShapeBuild_ReShape) aContext = new ShapeBuild_ReShape;
|
|
TopoDS_Shape aRes = aSolid;
|
|
aRes = aContext->Apply(aSolid);
|
|
|
|
// processing each face
|
|
TopExp_Explorer exp;
|
|
for(exp.Init(aRes, TopAbs_FACE); exp.More(); exp.Next()) {
|
|
TopoDS_Face aFace =
|
|
TopoDS::Face(aContext->Apply(exp.Current().Oriented(TopAbs_FORWARD)));
|
|
TopTools_IndexedDataMapOfShapeListOfShape aMapFacesEdges;
|
|
|
|
for(TopExp_Explorer expe(aFace,TopAbs_EDGE); expe.More(); expe.Next()) {
|
|
TopoDS_Edge edge = TopoDS::Edge(expe.Current());
|
|
if(!aMapEdgeFaces.Contains(edge)) continue;
|
|
const TopTools_ListOfShape& aList = aMapEdgeFaces.FindFromKey(edge);
|
|
TopTools_ListIteratorOfListOfShape anIter(aList);
|
|
for( ; anIter.More(); anIter.Next()) {
|
|
TopoDS_Face face = TopoDS::Face(anIter.Value());
|
|
TopoDS_Face face1 = TopoDS::Face(aContext->Apply(anIter.Value()));
|
|
if(face1.IsSame(aFace)) continue;
|
|
if(aMapFacesEdges.Contains(face)) {
|
|
aMapFacesEdges.ChangeFromKey(face).Append(edge);
|
|
}
|
|
else {
|
|
TopTools_ListOfShape ListEdges;
|
|
ListEdges.Append(edge);
|
|
aMapFacesEdges.Add(face,ListEdges);
|
|
}
|
|
}
|
|
}
|
|
|
|
for(Standard_Integer i=1; i<=aMapFacesEdges.Extent(); i++) {
|
|
const TopTools_ListOfShape& ListEdges = aMapFacesEdges.FindFromIndex(i);
|
|
TopTools_SequenceOfShape SeqEdges;
|
|
TopTools_ListIteratorOfListOfShape anIter(ListEdges);
|
|
for( ; anIter.More(); anIter.Next()) {
|
|
SeqEdges.Append(anIter.Value());
|
|
}
|
|
if(SeqEdges.Length()==1) continue;
|
|
TopoDS_Edge E;
|
|
if( MergeEdges(SeqEdges,aFace,Tol,E) ) {
|
|
// now we have only one edge - aChain.Value(1)
|
|
// we have to replace old ListEdges with this new edge
|
|
aContext->Replace(SeqEdges(1),E);
|
|
for(Standard_Integer j=2; j<=SeqEdges.Length(); j++) {
|
|
aContext->Remove(SeqEdges(j));
|
|
}
|
|
TopoDS_Face tmpF = TopoDS::Face(exp.Current());
|
|
if( !ChangedFaces.Contains(tmpF) )
|
|
ChangedFaces.Add(tmpF);
|
|
tmpF = TopoDS::Face(aMapFacesEdges.FindKey(i));
|
|
if( !ChangedFaces.Contains(tmpF) )
|
|
ChangedFaces.Add(tmpF);
|
|
}
|
|
}
|
|
|
|
} // end processing each face
|
|
|
|
// fix changed faces and replace them in the local context
|
|
for(Standard_Integer i=1; i<=ChangedFaces.Extent(); i++) {
|
|
TopoDS_Face aFace = TopoDS::Face(aContext->Apply(ChangedFaces.FindKey(i)));
|
|
Handle(ShapeFix_Face) sff = new ShapeFix_Face(aFace);
|
|
sff->SetContext(myContext);
|
|
sff->SetPrecision(myTolerance);
|
|
sff->SetMinTolerance(myTolerance);
|
|
sff->SetMaxTolerance(Max(1.,myTolerance*1000.));
|
|
sff->Perform();
|
|
aContext->Replace(aFace,sff->Face());
|
|
}
|
|
|
|
if(ChangedFaces.Extent()>0) {
|
|
// fix changed shell and replace it in the local context
|
|
TopoDS_Shape aRes1 = aContext->Apply(aRes);
|
|
TopExp_Explorer expsh;
|
|
for(expsh.Init(aRes1, TopAbs_SHELL); expsh.More(); expsh.Next()) {
|
|
TopoDS_Shell aShell = TopoDS::Shell(expsh.Current());
|
|
Handle(ShapeFix_Shell) sfsh = new ShapeFix_Shell;
|
|
sfsh->FixFaceOrientation(aShell);
|
|
aContext->Replace(aShell,sfsh->Shell());
|
|
}
|
|
TopoDS_Shape aRes2 = aContext->Apply(aRes1);
|
|
// put new solid into global context
|
|
myContext->Replace(aSolid,aRes2);
|
|
}
|
|
|
|
} // end processing each solid
|
|
|
|
aResult = myContext->Apply(Shape);
|
|
return aResult;
|
|
}
|