From ca1491f88b7610968b0c89def35d10bc5f788acb Mon Sep 17 00:00:00 2001 From: mgerus Date: Wed, 29 Jun 2022 09:27:09 +0300 Subject: [PATCH] 0030398: Modeling Algorithms - thrusection produces twisted solid Change FirstBary to PrevBary to correct Offset calculation relative prev wire instead of first wire --- src/BRepFill/BRepFill_CompatibleWires.cxx | 8 +++++--- tests/bugs/modalg_7/bug30398 | 14 ++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 tests/bugs/modalg_7/bug30398 diff --git a/src/BRepFill/BRepFill_CompatibleWires.cxx b/src/BRepFill/BRepFill_CompatibleWires.cxx index 13212c52a1..ebb01adf79 100644 --- a/src/BRepFill/BRepFill_CompatibleWires.cxx +++ b/src/BRepFill/BRepFill_CompatibleWires.cxx @@ -1585,7 +1585,7 @@ void BRepFill_CompatibleWires::ComputeOrigin(const Standard_Boolean /*polar*/ ) NbSamples = 4; gp_Pln FirstPlane; PlaneOfWire(TopoDS::Wire(myWork(ideb)), FirstPlane); - gp_Pnt FirstBary = FirstPlane.Location(); + gp_Pnt PrevBary = FirstPlane.Location(); gp_Vec NormalOfFirstPlane = FirstPlane.Axis().Direction(); for (i = ideb+1; i <= ifin; i++) { @@ -1596,10 +1596,10 @@ void BRepFill_CompatibleWires::ComputeOrigin(const Standard_Boolean /*polar*/ ) gp_Pln CurPlane; PlaneOfWire(aWire, CurPlane); gp_Pnt CurBary = CurPlane.Location(); - gp_Vec aVec(FirstBary, CurBary); + gp_Vec aVec(PrevBary, CurBary); gp_Vec anOffsetProj = (aVec * NormalOfFirstPlane) * NormalOfFirstPlane; CurBary.Translate(-anOffsetProj); //projected current bary center - gp_Vec Offset(CurBary, FirstBary); + gp_Vec Offset(CurBary, PrevBary); TopoDS_Wire newwire; BRep_Builder BB; @@ -1804,6 +1804,8 @@ void BRepFill_CompatibleWires::ComputeOrigin(const Standard_Boolean /*polar*/ ) newwire.Closed( Standard_True ); newwire.Orientation( TopAbs_FORWARD ); myWork(i) = newwire; + + PrevBary = CurBary; } #ifdef OCCT_DEBUG_EFV diff --git a/tests/bugs/modalg_7/bug30398 b/tests/bugs/modalg_7/bug30398 new file mode 100644 index 0000000000..9f4804dd32 --- /dev/null +++ b/tests/bugs/modalg_7/bug30398 @@ -0,0 +1,14 @@ +puts "=================================================" +puts "0030398: Modeling Algorithms - thrusection produces twisted solid" +puts "=================================================" +puts "" + +restore [locate_data_file bug30398.brep] a +eval thrusections r 1 1 [explode a w] + +checkshape r +checknbshapes r -shell 1 -face 630 -wire 630 -edge 1260 + +smallview +fit +checkview -screenshot -2d -path ${imagedir}/${test_image}.png \ No newline at end of file