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.
48 lines
1.0 KiB
Plaintext
48 lines
1.0 KiB
Plaintext
puts "============"
|
|
puts "OCC27302"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## Invalid curves number in intersection result
|
|
###############################
|
|
|
|
set MaxTol 6.5952839365451194e-008
|
|
set GoodNbCurv 1
|
|
|
|
restore [locate_data_file CTO900_pro12913a.rle] a
|
|
restore [locate_data_file CTO900_pro12913b.rle] b
|
|
|
|
explode a f
|
|
explode b f
|
|
|
|
smallview
|
|
don a_34 b_9
|
|
fit
|
|
|
|
set log [bopcurves a_34 b_9 -2d]
|
|
|
|
regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} ${log} full Toler NbCurv
|
|
|
|
checkreal ToleranceReached ${Toler} ${MaxTol} 0.0 0.1
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
|
|
|
if {${NbCurv} != ${GoodNbCurv}} {
|
|
puts "Error: Number of curves is bad!"
|
|
|
|
for {set i 1} {$i < ${NbCurv}} {incr i} {
|
|
for {set j [expr $i+1]} {$j <= $NbCurv} {incr j} {
|
|
mkedge e1 c_$i
|
|
mkedge e2 c_$j
|
|
|
|
dset dd_val 100.0*${Toler}
|
|
distmini dd e1 e2
|
|
|
|
if { [dval dd_val] > ${Toler} } {
|
|
puts "Error: Intersection result is not closed"
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
checklength c_1 -l 86.536841230136204
|
|
} |