mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. Exception in intersection of two analytical faces has been fixed by adding a simple check on number of vertices in the resulting analytical curve; 2. Projection of the Circle on the Cone now checks if the Circle's normal direction is parallel to the Cone direction. If it is not, the different, more advanced, algorithm will be used for projection - ProjLib_ComputeApprox; 3. Intersection of the Edge with the Face (IntTools_EdgeFace algorithm) in QuickCoincidenceCheck mode has been fixed to avoid the checking of the type of the intersection result if the coincidence check gives the positive result; 4. All common IN edges of the intersecting faces has been added for intersection with section edges to avoid self-intersection in the result; 5. Post treatment of the section edges in Boolean operations has been improved with the new stage which treats the possible common zones, not detected by the intersection algorithm, between faces by intersecting each section edge with all faces, not participated in its creation, and in case of coincidence putting it as IN edge into FaceInfo structure of the face. The new function has been implemented for that - BOPAlgo_PaveFiller::PutSEInOtherFaces(). 6. Checking for the SameDomain splits of faces in Boolean Operations has been modified to process the pairs of faces in which both the section curves and common zones are present. 7. Adjustment of the test case boolean gdml_private ZH3 as improvement. 8. Test cases for the issue. 9. Test cases for the parent issue - 0026789.
25 lines
636 B
Plaintext
25 lines
636 B
Plaintext
puts "========"
|
|
puts "OCC26789"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Fuse of several solids fails
|
|
#################################################
|
|
|
|
restore [locate_data_file bug26789_All-Spikes.brep] a
|
|
explode a
|
|
# fusing all solids one by one
|
|
bfuse result a_1 a_2
|
|
bfuse result result a_3
|
|
bfuse result result a_4
|
|
bfuse result result a_5
|
|
bfuse result result a_6
|
|
bfuse result result a_7
|
|
bfuse result result a_8
|
|
bfuse result result a_9
|
|
|
|
checkshape result
|
|
checknbshapes result -solid 1 -shell 2
|
|
checkprops result -s 3583.27 -v 11455.2
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png |