1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug28002_2
emv 0391af0aa1 0028002: Invalid result of Boolean Fuse operation
The SolidClassifier algorithm does not take into account the internal parts of the solid and its faces.
But in some cases the parts which are internal on some shapes can be included in other shapes of
the same solid with FORWARD/REVERSED orientation and therefore should be counted as well.

The fix changes the procedure of the initialization of the tree of bounding boxes of the edges and
vertices of the solid in SolidExplorer algorithm to treat the internal/external parts of the solid correctly.
2016-10-27 17:43:43 +03:00

19 lines
500 B
Plaintext

puts "========"
puts "OCC28002"
puts "========"
puts ""
#################################################
# Invalid result of Boolean Fuse operation
#################################################
binrestore [locate_data_file bug28002_solid.bin] solid
point pnt -91.9238815542512 433.456456867354 81.42128884
# perform classification and get the result
set result [lindex [bclassify solid pnt] 3]
if {$result != "OUT"} {
puts "Error: incorrect classification of the point relatively solid"
}