From 61d1a3e028c49ea1ee0dcbed89bcc23eae49d022 Mon Sep 17 00:00:00 2001 From: abk Date: Tue, 25 Dec 2012 13:15:00 +0400 Subject: [PATCH] Static public method EnsureToleranceRule(const TopoDS_Shape & theS) was created in class BRepBuilderAPI_MakeShape to fix all tolerances of the shape and it's subshapes by the tolerance rule: vertex tolerance >= edge tolerance >= face tolerance. Edge or vertex tolerance which does not satisfy the tolerance rule will be increased. Draw command EnsureTolRule was created to test new functional. Tolerance post Build (Perform) fix was made for: - BRepBuilderAPI_Sewing, - BRepFilletAPI_MakeChamfer, - BRepFilletAPI_MakeFillet, - BRepOffsetAPI_MakePipe, - BRepOffsetAPI_NormalProjection, - ShapeFix_Shape, - ShapeUpgrade_ShapeDivide. --- .../BRepBuilderAPI_MakeShape.cdl | 5 ++ .../BRepBuilderAPI_MakeShape.cxx | 63 +++++++++++++++++++ src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx | 2 + .../BRepFilletAPI_MakeChamfer.cxx | 1 + .../BRepFilletAPI_MakeFillet.cxx | 1 + src/BRepOffsetAPI/BRepOffsetAPI_MakePipe.cxx | 1 + .../BRepOffsetAPI_NormalProjection.cxx | 1 + src/BRepTest/BRepTest_BasicCommands.cxx | 23 +++++++ src/ShapeFix/ShapeFix_Shape.cdl | 6 +- src/ShapeFix/ShapeFix_Shape.cxx | 18 +++++- src/ShapeUpgrade/ShapeUpgrade_ShapeDivide.cxx | 3 + 11 files changed, 122 insertions(+), 2 deletions(-) diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cdl b/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cdl index f68da80304..9a31f831d0 100755 --- a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cdl +++ b/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cdl @@ -92,6 +92,11 @@ is is virtual; ---Purpose: Returns true if the shape S has been deleted. + EnsureToleranceRule (myclass; theS : Shape from TopoDS); + ---Purpose: Fixes all tolerances of shape theS and it's subshapes by the tolerance + -- rule: vertex tolerance >= edge tolerance >= face tolerance. + -- Edge or vertex tolerance which does not satisfy the tolerance rule will + -- be increased. fields diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cxx b/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cxx index 8821a6aed1..8c8cfe85c8 100755 --- a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cxx @@ -21,6 +21,10 @@ #include +#include +#include +#include +#include #include #include #include @@ -116,4 +120,63 @@ Standard_Boolean BRepBuilderAPI_MakeShape::IsDeleted (const TopoDS_Shape& S) +//======================================================================= +//function : EnsureToleranceRule +//purpose : +//======================================================================= + +void BRepBuilderAPI_MakeShape::EnsureToleranceRule(const TopoDS_Shape & theS) +{ + if (theS.IsNull()) + { + return; + } + // + for (TopExp_Explorer aFE(theS, TopAbs_FACE); aFE.More(); aFE.Next()) + { + TopoDS_Face aF = TopoDS::Face(aFE.Current()); + Standard_Real aFT = (*((Handle_BRep_TFace *)&aF.TShape()))->Tolerance(); + // + for (TopExp_Explorer anEE(aF, TopAbs_EDGE); anEE.More(); anEE.Next()) + { + TopoDS_Edge anES = TopoDS::Edge(anEE.Current()); + Handle_BRep_TEdge & anEG = *(Handle_BRep_TEdge *)&anES.TShape(); + Standard_Real anET = anEG->Tolerance(); + if (anET < aFT) + { + anET = aFT; + anEG->Tolerance(anET); + } + for (TopExp_Explorer aVE(anES, TopAbs_VERTEX); aVE.More(); aVE.Next()) + { + TopoDS_Vertex aVS = TopoDS::Vertex(aVE.Current()); + Handle_BRep_TVertex & aVG = *(Handle_BRep_TVertex *)&aVS.TShape(); + aVG->UpdateTolerance(anET); + } + } + // + for (TopExp_Explorer aVE(aF, TopAbs_VERTEX, TopAbs_EDGE); + aVE.More(); aVE.Next()) + { + TopoDS_Vertex aVS = TopoDS::Vertex(aVE.Current()); + Handle_BRep_TVertex & aVG = *(Handle_BRep_TVertex *)&aVS.TShape(); + aVG->UpdateTolerance(aFT); + } + } + // + for (TopExp_Explorer anEE(theS, TopAbs_EDGE, TopAbs_FACE); + anEE.More(); anEE.Next()) + { + TopoDS_Edge anES = TopoDS::Edge(anEE.Current()); + Handle_BRep_TEdge & anEG = *(Handle_BRep_TEdge *)&anES.TShape(); + Standard_Real anET = anEG->Tolerance(); + for (TopExp_Explorer aVE(anES, TopAbs_VERTEX); aVE.More(); aVE.Next()) + { + TopoDS_Vertex aVS = TopoDS::Vertex(aVE.Current()); + Handle_BRep_TVertex & aVG = *(Handle_BRep_TVertex *)&aVS.TShape(); + aVG->UpdateTolerance(anET); + } + } +} + diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx b/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx index 2834271f7d..2e6b2de632 100755 --- a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx @@ -127,6 +127,7 @@ #include #include #include +#include #include static void SortBox (const Handle(Bnd_HArray1OfBox) hSetBoxes, @@ -1909,6 +1910,7 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the mySewedShape.Nullify(); return; } + BRepBuilderAPI_MakeShape::EnsureToleranceRule(mySewedShape); } #if DEB chr_total.Stop(); diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.cxx b/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.cxx index 5b016e6974..3ec82c9a1b 100755 --- a/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.cxx +++ b/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.cxx @@ -391,6 +391,7 @@ void BRepFilletAPI_MakeChamfer::Build() if (myBuilder.IsDone()){ Done(); myShape = myBuilder.Shape(); + EnsureToleranceRule(myShape); //creation of the Map. TopExp_Explorer ex; diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeFillet.cxx b/src/BRepFilletAPI/BRepFilletAPI_MakeFillet.cxx index 29f0b00b28..5c7c465e18 100755 --- a/src/BRepFilletAPI/BRepFilletAPI_MakeFillet.cxx +++ b/src/BRepFilletAPI/BRepFilletAPI_MakeFillet.cxx @@ -532,6 +532,7 @@ void BRepFilletAPI_MakeFillet::Build() if(myBuilder.IsDone()) { Done(); myShape = myBuilder.Shape(); + EnsureToleranceRule(myShape); // creation of the Map. TopExp_Explorer ex; diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipe.cxx b/src/BRepOffsetAPI/BRepOffsetAPI_MakePipe.cxx index f98ffe37fb..9c1f484cbb 100755 --- a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipe.cxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_MakePipe.cxx @@ -59,6 +59,7 @@ const BRepFill_Pipe& BRepOffsetAPI_MakePipe::Pipe() const void BRepOffsetAPI_MakePipe::Build() { myShape = myPipe.Shape(); + BRepBuilderAPI_MakeShape::EnsureToleranceRule(myShape); Done(); } diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.cxx b/src/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.cxx index 203f29b82f..80771ecc06 100755 --- a/src/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.cxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.cxx @@ -64,6 +64,7 @@ BRepOffsetAPI_NormalProjection::BRepOffsetAPI_NormalProjection() { myNormalProjector.Build(); myShape = myNormalProjector.Projection(); + BRepBuilderAPI_MakeShape::EnsureToleranceRule(myShape); Done(); } diff --git a/src/BRepTest/BRepTest_BasicCommands.cxx b/src/BRepTest/BRepTest_BasicCommands.cxx index b1472a4d7a..109eb1eb9e 100755 --- a/src/BRepTest/BRepTest_BasicCommands.cxx +++ b/src/BRepTest/BRepTest_BasicCommands.cxx @@ -800,6 +800,27 @@ static Standard_Integer scalexyz(Draw_Interpretor& di, Standard_Integer n, const return 0; } +static Standard_Integer EnsureTolRule( + Draw_Interpretor & theDI, Standard_Integer theC, const char ** theAs) +{ + if (theC != 3) + { + return 1; + } + // + TopoDS_Shape aS = DBRep::Get(theAs[2]); + if (aS.IsNull()) + { + return 1; + } + // + TopoDS_Shape aRes = BRepBuilderAPI_Copy(aS); + BRepBuilderAPI_MakeShape::EnsureToleranceRule(aRes); + // + DBRep::Set(theAs[1], aRes); + return 0; +} + void BRepTest::BasicCommands(Draw_Interpretor& theCommands) { static Standard_Boolean done = Standard_False; @@ -931,4 +952,6 @@ void BRepTest::BasicCommands(Draw_Interpretor& theCommands) "scalexyz res shape factor_x factor_y factor_z", __FILE__, scalexyz, g); + + theCommands.Add("EnsureTolRule", "res shape", __FILE__, EnsureTolRule, g); } diff --git a/src/ShapeFix/ShapeFix_Shape.cdl b/src/ShapeFix/ShapeFix_Shape.cdl index b3a9c5def9..9db1790d3b 100755 --- a/src/ShapeFix/ShapeFix_Shape.cdl +++ b/src/ShapeFix/ShapeFix_Shape.cdl @@ -49,10 +49,14 @@ is Init (me: mutable; shape: Shape from TopoDS); ---Purpose: Initislises by shape. - Perform (me : mutable; + Perform (me : mutable; theProgress : ProgressIndicator from Message = 0) returns Boolean; ---Purpose: Iterates on sub- shape and performs fixes + PerformR (me : mutable; + theProgress : ProgressIndicator from Message ) returns Boolean is private; + ---Purpose: Internal method. Called by Perform. + SameParameter (me : mutable; shape : Shape from TopoDS; enforce : Boolean; diff --git a/src/ShapeFix/ShapeFix_Shape.cxx b/src/ShapeFix/ShapeFix_Shape.cxx index 9c3584632c..71e40f9fdb 100755 --- a/src/ShapeFix/ShapeFix_Shape.cxx +++ b/src/ShapeFix/ShapeFix_Shape.cxx @@ -33,6 +33,7 @@ #include #include #include +#include #include #include @@ -99,7 +100,22 @@ void ShapeFix_Shape::Init(const TopoDS_Shape& shape) //purpose : //======================================================================= -Standard_Boolean ShapeFix_Shape::Perform(const Handle(Message_ProgressIndicator)& theProgress) +Standard_Boolean ShapeFix_Shape::Perform(const Handle(Message_ProgressIndicator)& theProgress) +{ + Standard_Boolean aR = PerformR(theProgress); + if (aR) + { + BRepBuilderAPI_MakeShape::EnsureToleranceRule(myResult); + } + return aR; +} + +//======================================================================= +//function : PerformR +//purpose : +//======================================================================= + +Standard_Boolean ShapeFix_Shape::PerformR(const Handle(Message_ProgressIndicator)& theProgress) { Standard_Integer savFixSmallAreaWireMode = 0; diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivide.cxx b/src/ShapeUpgrade/ShapeUpgrade_ShapeDivide.cxx index df80a5fb9d..fafad09633 100755 --- a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivide.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_ShapeDivide.cxx @@ -37,6 +37,7 @@ #include #include #include +#include //======================================================================= //function : ShapeUpgrade_ShapeDivide @@ -174,6 +175,7 @@ Standard_Boolean ShapeUpgrade_ShapeDivide::Perform(const Standard_Boolean newCon if ( Status ( ShapeExtend_DONE ) ) { myResult = myContext->Apply ( C, TopAbs_SHAPE ); myContext->Replace ( myShape, myResult ); + BRepBuilderAPI_MakeShape::EnsureToleranceRule(myResult); return Standard_True; } myResult = myShape; @@ -282,6 +284,7 @@ Standard_Boolean ShapeUpgrade_ShapeDivide::Perform(const Standard_Boolean newCon } } myResult = myContext->Apply ( myShape, TopAbs_SHAPE ); + BRepBuilderAPI_MakeShape::EnsureToleranceRule(myResult); return ! myResult.IsSame ( myShape ); }