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.
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
puts "============"
|
|
puts "OCC27282"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## [Regression to 6.9.1] smesh/bugs_00/A6: Cut produces an empty shape
|
|
###############################
|
|
|
|
set MaxTol 2.1243683206633536e-006
|
|
set GoodNbCurv 1
|
|
|
|
restore [locate_data_file bug27282_cmpd.brep] a
|
|
explode a f
|
|
|
|
smallview
|
|
don a_2 a_5
|
|
fit
|
|
|
|
set log [bopcurves a_2 a_5 -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 833.56846557106064
|
|
} |