mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The ChFi3d_IsInFront code is currently not handling all the combinations correctly. For example, if `if(fd1->IndexOfS2() == fd2->IndexOfS2())` is true, it can happen that the `TopoDS::Face(DStr.Shape(fd1->Index(jf1)))` returns a Face with entity == NULL. The subsequent usage of this NULL face in `BRep_Tool::Parameters( Vtx, face )` will then cause a segfault. While the best approach would be to identify the implementation bug in the algorithm behind PChFi3d_IsInFron, a check + exception is used instead because the actual algorithm is not known. Signed-off-by: Charlemagne Lasse <charlemagnelasse@gmail.com>
27 lines
592 B
Plaintext
27 lines
592 B
Plaintext
puts "TODO OCC32931 ALL: Tcl Exception"
|
|
puts "TODO OCC32931 ALL: TEST INCOMPLETE"
|
|
|
|
puts "============"
|
|
puts "OCC32931: Modeling Algorithms - Crash in ChFi3d_IsInFront when no face was found"
|
|
puts "============"
|
|
puts ""
|
|
|
|
# Load & prepare data.
|
|
restore [locate_data_file bug32931.brep] b
|
|
explode b E
|
|
|
|
# Make screenshot before filleting.
|
|
smallview
|
|
donly b b_10 1 b_18 1 b_19 1 b_20 1 b_21 1 b_17
|
|
fit
|
|
xwd $imagedir/${test_image}_1.png
|
|
|
|
# Make fillet.
|
|
blend result b 1 b_10 1 b_18 1 b_19 1 b_20 1 b_21 1 b_17
|
|
|
|
# Make screenshot after filleting.
|
|
donly result
|
|
fit
|
|
xwd $imagedir/${test_image}_2.png
|
|
|