mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
When checking if the split edge is oriented as the original one (BOPTools_AlgoTools::IsSplitToReverse()) the tangent vectors should be computed for both edges at the same point. This point is taken on the split edge and projected on the original edge. The fix is intended to ensuring that the reference point will be taken inside the valid range of the split edge (i.e. not covered by the tolerance spheres of its bounding vertices) and the projection of this point on the original edge will be successful. Moreover, several sampling points are now taken on the split edge and processed until first valid point is found. If requested (by a not null pointer) all *BOPTools_AlgoTools::IsSplitToReverse()* methods are now return the error status of the check. Before using the returned flag, the calling program should check this error status. For successful check the error status should be equal to zero. New warning *BOPAlgo_AlertUnableToOrientTheShape* is now returned in the algorithms in Boolean component in case the check for correct shape orientation failed. Test case for the issue.
44 lines
939 B
Plaintext
44 lines
939 B
Plaintext
puts "============"
|
|
puts "OCC29698"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## Regression vs 7.2.0: Common operation raises FLT_INVALID_OPERATION exception
|
|
###############################
|
|
|
|
# the case is a copy of the test case
|
|
# bugs/modalg_6/bug26952_1
|
|
# to test the BOP operation on the same arguments
|
|
# with FPE signals switched on
|
|
|
|
restore [locate_data_file bug26952_B41.brep] b1
|
|
restore [locate_data_file bug26952_Tank41_1.brep] b2
|
|
|
|
# enable FPE signals
|
|
dsetsignal 1
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects b1
|
|
baddtools b2
|
|
bfillds
|
|
bbop result 0
|
|
|
|
# disable FPE signals
|
|
dsetsignal 0
|
|
|
|
checkprops result -s 424.666
|
|
checknbshapes result -wire 2 -face 1
|
|
|
|
# check modification of the front face of the solid
|
|
savehistory h
|
|
explode b2 f
|
|
modified f_mod h b2_12
|
|
|
|
explode result f
|
|
checkprops f_mod -equal result_1
|
|
|
|
checknbshapes f_mod -ref [nbshapes result_1]
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|