mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
30 lines
656 B
Plaintext
30 lines
656 B
Plaintext
puts "========"
|
|
puts "OCC28002"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Invalid result of Boolean Fuse operation
|
|
#################################################
|
|
|
|
binrestore [locate_data_file bug28002_shapes.bin] b
|
|
|
|
explode b
|
|
|
|
# perform intersection
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects b_1
|
|
baddtools b_2 b_3 b_4 b_5 b_6 b_7
|
|
bfillds
|
|
|
|
# build the result of General Fuse operation
|
|
bbuild rgf
|
|
checkshape rgf
|
|
checknbshapes rgf -solid 82
|
|
|
|
# build the result of Boolean Fuse operation
|
|
bbop result 1
|
|
checkshape result
|
|
checknbshapes result -solid 1 -face 404
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png |