mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
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.
17 lines
368 B
Plaintext
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"
|
|
}
|