mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Treatment for single singular point is added. Test cases are updated to the new behavior. New test cases are added, Message of "bad" state is corrected.
28 lines
725 B
Plaintext
28 lines
725 B
Plaintext
puts "TODO OCC24694 ALL: Error : The result of cut operation is self-interfered shape"
|
|
puts "=========="
|
|
puts "OCC26938 "
|
|
puts "=========="
|
|
puts ""
|
|
#####################################################
|
|
# Boolean operations fail between two ellipsoids
|
|
#####################################################
|
|
|
|
restore [locate_data_file bug26938.brep] a
|
|
explode a
|
|
|
|
bcut result a_2 a_1
|
|
|
|
# Check shape validity
|
|
checkshape result
|
|
|
|
# Check area
|
|
checkprops result -s 4.86143e+006
|
|
|
|
# Check self-intersection
|
|
set info [bopcheck result]
|
|
if { [regexp "This shape seems to be OK" ${info}] != 1 } {
|
|
puts "Error : The result of cut operation is self-interfered shape"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|