mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The following improvements have been introduced in Boolean Operations algorithm s: 1. UBTree is replaced with EBTree in Boolean operations to be able to add/remove elements into the tree of bounding boxes. 2. Repeated (nested) intersection of sub-shapes is performed with argument vertices whose tolerances increased during the operation. 3. The algorithms of Edge/Edge and Edge/Face intersection have been improved for the cases when the intersection point is located close to the edge boundaries . 4. New procedure has been implemented to ensure forced creation of Edge/Face common blocks in cases when the edge is really close to the face. 5. Post-processing of Face/Face intersection results has been improved. 6. Extension of the planar faces for Plane/Plane intersection is avoided. 7. Builder Face now better classifies potentially internal edges relatively to new faces with filtering by bounding boxes. Side effect changes: 1. IntTools_ShrunkRange now keeps the length of the valid range of the edge. 2. The method BOPDS_DS::UpdateEdgeTolerance() has been removed as unused (replaced by the BOPAlgo_PaveFiller::UpdateEdgeTolerance()). Test case for the issue 0029900. Test case for the issue 0029711. Adjustments of the existing test cases. Avoid using uninitialized variables.
43 lines
1002 B
Plaintext
43 lines
1002 B
Plaintext
puts "=============================================================="
|
|
puts "OCC28123: Boolean Cut produces faulty shape"
|
|
puts "=============================================================="
|
|
puts ""
|
|
|
|
brestore [locate_data_file bug28123_s1.brep] s1
|
|
brestore [locate_data_file bug28123_s3.brep] s3
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects s1
|
|
baddtools s3
|
|
bfillds
|
|
|
|
bbop r0 0
|
|
bbop r1 1
|
|
bbop r2 2
|
|
bbop r3 3
|
|
bbop r4 4
|
|
|
|
foreach r {r0 r1 r2 r3 r4} {
|
|
checkshape $r
|
|
if {![regexp "OK" [bopcheck $r]]} {
|
|
puts "Error: the result of BOP is self-interfering shape"
|
|
}
|
|
}
|
|
|
|
checknbshapes r0 -wire 6 -face 6 -shell 1 -solid 1
|
|
checkprops r0 -s 5.2 -v 0.42
|
|
|
|
checknbshapes r1 -wire 25 -face 25 -shell 1 -solid 1
|
|
checkprops r1 -s 45921.2 -v 6839.09
|
|
|
|
checknbshapes r2 -wire 17 -face 17 -shell 1 -solid 1
|
|
checkprops r2 -s 45780.6 -v 6784.77
|
|
|
|
checknbshapes r3 -wire 10 -face 10 -shell 2 -solid 2
|
|
checkprops r3 -s 142.969 -v 39.5572
|
|
|
|
checkprops r4 -l 14.2568
|
|
|
|
checkview -display r2 -2d -path ${imagedir}/${test_image}.png
|