mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Wrong distance computation has been corrected. Some test-cases have been corrected according to their new behavior. Namely, built (by approximation algorithm) curve(s) has changed its geometrical position. 1. tests/blend/simple/X4 It is not a regression because the result is not correct on both MASTER and FIX (see explanation in the issue #26740). This problem is expected to be solved after porting Fillet-algorithm to new Boolean operation. Old Boolean operations do not cover Edge-Edge tangent-zone by vertex. 2. tests/bugs/modalg_6/bug27341_318 "checknbshapes" has been deleted in order to avoid non-stable behavior (see issue #29360) of this test case. New result is OK on both Linux and Windows platform.
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
restore [locate_data_file GEN758_nofog.rle] a
|
|
explode a f
|
|
|
|
# see issue #26777
|
|
set GoodNbCurv 1
|
|
|
|
set log [bopcurves a_1 a_2 -2d -p 0.20639206339545224 0.69260832843385300 0.0 0.017002507022347624]
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log} full Tolerance_Reached NbCurv
|
|
|
|
set expected_Tolerance_Reached 2.8312498500210269e-07
|
|
set tol_abs_Tolerance_Reached 0.0
|
|
set tol_rel_Tolerance_Reached 1.0e-2
|
|
checkreal "Tolerance Reached" ${Tolerance_Reached} ${expected_Tolerance_Reached} ${tol_abs_Tolerance_Reached} ${tol_rel_Tolerance_Reached}
|
|
|
|
if {${NbCurv} != ${GoodNbCurv}} {
|
|
puts "Error: ${GoodNbCurv} curves are expected but ${NbCurv} are found!"
|
|
}
|
|
|
|
smallview
|
|
clear
|
|
|
|
if {${NbCurv} == 1} {
|
|
display c_1
|
|
fit
|
|
} else {
|
|
for { set i 1 } { ${i} <= ${NbCurv} } {incr i} {
|
|
bounds c_$i u1 u2
|
|
cvalue c_$i u2 xx yy zz
|
|
point p$i xx yy zz
|
|
}
|
|
|
|
fit
|
|
|
|
for { set i 1 } { ${i} <= ${NbCurv} } {incr i} {
|
|
erase p$i
|
|
display c_$i
|
|
}
|
|
}
|
|
|
|
xwd ${imagedir}/${casename}_curv.png
|
|
|
|
donly a_1 a_2
|
|
|
|
bsection result a_1 a_2
|
|
|
|
checkprops result -l 22.2575
|
|
checksection result
|
|
checkview -display result -2d -otherwise { a_1 a_2 } -l -path ${imagedir}/${test_image}.png
|