mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0026481: Incorrect result of BRepOffsetAPI_MakeOffset: excess hanging arcs in the open result with join type GeomAbs_Arc
Test-case for issue #26481
This commit is contained in:
parent
7321e9fb9a
commit
016dfb16ba
@ -811,6 +811,24 @@ void BRepFill_OffsetWire::PerformWithBiLo
|
||||
}
|
||||
}
|
||||
|
||||
//Remove possible hanging arcs on vertices
|
||||
if (myIsOpenResult && myJoinType == GeomAbs_Arc)
|
||||
{
|
||||
if (!myMap.IsEmpty() &&
|
||||
myMap.FindKey(1).ShapeType() == TopAbs_VERTEX)
|
||||
{
|
||||
//myMap.RemoveFirst();
|
||||
TopoDS_Shape LastShape = myMap.FindKey(myMap.Extent());
|
||||
TopTools_ListOfShape LastList;
|
||||
LastList.Append(myMap(myMap.Extent()));
|
||||
myMap.RemoveLast();
|
||||
if (!myMap.IsEmpty())
|
||||
myMap.Substitute(1, LastShape, LastList);
|
||||
}
|
||||
if (!myMap.IsEmpty() &&
|
||||
myMap.FindKey(myMap.Extent()).ShapeType() == TopAbs_VERTEX)
|
||||
myMap.RemoveLast();
|
||||
}
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
#ifdef DRAW
|
||||
|
16
tests/bugs/modalg_6/bug26481
Normal file
16
tests/bugs/modalg_6/bug26481
Normal file
@ -0,0 +1,16 @@
|
||||
puts "========"
|
||||
puts "OCC26481"
|
||||
puts "========"
|
||||
puts ""
|
||||
###################################################################################################################
|
||||
# Incorrect result of BRepOffsetAPI_MakeOffset: excess hanging arcs in the open result with join type GeomAbs_Arc
|
||||
###################################################################################################################
|
||||
|
||||
smallview
|
||||
|
||||
restore [locate_data_file OCC26481-linesarc.brep] a
|
||||
fit
|
||||
openoffset r a 4 10.
|
||||
fit
|
||||
|
||||
set only_screen_axo 1
|
Loading…
x
Reference in New Issue
Block a user