mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Usage of Bnd_Box-filtering is eliminated while putting a (definitely) common vertex between two faces on the intersection curve. Algorithm of putting not-common (ON/IN) vertices has not been changed.
29 lines
703 B
Plaintext
29 lines
703 B
Plaintext
puts "=========="
|
|
puts "OCC26938 "
|
|
puts "=========="
|
|
puts ""
|
|
#####################################################
|
|
# Boolean operations fail between two ellipsoids
|
|
#####################################################
|
|
|
|
restore [locate_data_file bug26938.brep] a
|
|
explode a
|
|
|
|
bfuse result a_1 a_2
|
|
|
|
# Check shape validity
|
|
checkshape result
|
|
|
|
# Check area
|
|
checkprops result -s 1.00773e+007
|
|
|
|
# Check self-intersection
|
|
set info [bopcheck result]
|
|
if { [regexp "This shape seems to be OK" ${info}] != 1 } {
|
|
puts "Error : The result of General Fuse operation is self-interfered shape"
|
|
}
|
|
|
|
checknbshapes result -solid 1 -shell 1 -t -m "Result"
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|