mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
1. Processing when IntPatch_WLine/IntPatch_RLine goes through the seam edge has been improved in DecomposeResult(...) function (see IntPatch_ImpPrmIntersection.cxx). 2. Incorrect initialization of last point of IntPatch_WLine/IntPatch_RLine has been eliminated. Earlier it was the reason of exception. Creation of test case for this issue. Adjusting some test cases according to their new behavior. Namely: 1) tests\bugs\modalg_4\bug825 (bug825_2) Details are described in issue #25915. In short, new intersection algorithm works better than old (WLine without "jumping"). However, Boolean operation loses degenerated edges of the sphere. Consequently, we get the result with Not-closed face. 2) tests\bugs\modalg_6\bug26684_2 TolReached of intersection curve has become smaller. Consequently, intersection algorithm works better than earlier.
32 lines
863 B
Plaintext
32 lines
863 B
Plaintext
puts "============"
|
|
puts "OCC26684"
|
|
puts "============"
|
|
puts ""
|
|
###################################################
|
|
## Big tolerance values of the intersection curves
|
|
###################################################
|
|
|
|
brestore [locate_data_file IR2_TuyoPipeBSpline_20_draw2.brep] b1
|
|
brestore [locate_data_file IR2_sphere2_20.brep] b2
|
|
|
|
explode b1 f; copy b1_1 f1
|
|
explode b2 f; copy b2_1 f2
|
|
|
|
smallview
|
|
donly f1 f2
|
|
fit
|
|
|
|
# 1 case
|
|
set bop_info [bopcurves f1 f2]
|
|
regexp {Tolerance Reached=([-0-9.+eE]+)} $bop_info full Tolerance
|
|
|
|
checkreal "Reached tolerance" ${Tolerance} 1.2530391548405894e-008 1.e-7 0
|
|
|
|
# 2 case
|
|
set bop_info_2d [bopcurves f1 f2 -2d]
|
|
regexp {Tolerance Reached=([-0-9.+eE]+)} $bop_info_2d full Tolerance_2d
|
|
|
|
checkreal "Reached tolerance" ${Tolerance_2d} 1.4134494834137484e-005 0 1.e-2
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|