1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_6/bug28283
msv 0c5a6d479b 0028283: The command bopcheck crashes on the given shape
BOPAlgo_CheckerSI crashed due to building of pcurve for an edge not lying on surface. The fix avoids building of pcurves in this algorithm.
The new flag has been added in BOPAlgo_PaveFiller class (method SetAvoidBuildPCurve). It tells whether to avoid building pcurves. It is worth to set if the result is not used to create splits of faces, as in example with BOPAlgo_CheckerSI.
2016-12-29 14:48:36 +03:00

17 lines
368 B
Plaintext

puts "========"
puts "OCC28283"
puts "========"
puts ""
#################################################
# The command bopcheck crashes on the given shape
#################################################
restore [locate_data_file bug28283_shell.brep] a
bfuzzyvalue 1
if [catch {bopcheck a}] {
puts "Error: bopcheck crash"
} else {
puts "OK: bopcheck passed"
}