mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. New testgrid "lowalgos/intss" has been created. It will contain all test cases on geometrical intersection of two surfaces ("intersect" DRAW-command) and two faces ("bopcurves" DRAW-command). 2. New test case for the issue #28493 has been created because the problem is not reproduced on MASTER. 3. Test case (lowalgos/intss/bug24472) for the issue #29501 has been modified in order to check loops of the resulting intersection curves.
68 lines
1.6 KiB
Plaintext
68 lines
1.6 KiB
Plaintext
puts "================"
|
|
puts "OCC26894"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# Intersection algorithm between two infinite cylinders is hanging
|
|
#######################################################################
|
|
|
|
# Attention!!!
|
|
# The test on performance meter.
|
|
# On the MASTER it takes:
|
|
# Elapsed time: 0 Hours 0 Minutes 6.3723911111 Seconds
|
|
# CPU user time: 6.15625 seconds
|
|
# CPU system time: 0.0625 seconds
|
|
|
|
# The intersection curve is almost infinite.
|
|
# Therefore, we must have failed to return
|
|
# any section curve (see comments to the issue #26894).
|
|
set GoodNbCurv 0
|
|
|
|
restore [locate_data_file bug26884-f1.brep] f1
|
|
restore [locate_data_file bug26884-f2.brep] f2
|
|
|
|
mksurface ss1 f1
|
|
mksurface ss2 f2
|
|
|
|
if { ![ catch {intersect result ss1 ss2 } ] } {
|
|
puts "Error: intersection algorithm must return fail status. But it is not."
|
|
}
|
|
|
|
set che [whatis result]
|
|
set ind [string first "3d curve" $che]
|
|
if {${ind} >= 0} {
|
|
#Only variable "result" exists
|
|
renamevar result result_1
|
|
}
|
|
|
|
set ic 1
|
|
set AllowRepeate 1
|
|
while { $AllowRepeate != 0 } {
|
|
set che [whatis result_$ic]
|
|
set ind [string first "3d curve" $che]
|
|
if {${ind} < 0} {
|
|
set AllowRepeate 0
|
|
} else {
|
|
display result_$ic
|
|
|
|
bounds result_$ic U1 U2
|
|
|
|
dump U1 U2
|
|
|
|
if {[dval U2-U1] < 1.0e-9} {
|
|
puts "Error: Wrong curve's range!"
|
|
}
|
|
|
|
xdistcs result_$ic ss1 U1 U2 10 1.0e-7
|
|
xdistcs result_$ic ss2 U1 U2 10 1.0e-7
|
|
|
|
incr ic
|
|
}
|
|
}
|
|
|
|
if {[expr {$ic - 1}] == $GoodNbCurv} {
|
|
puts "OK: Number of curves is good!"
|
|
} else {
|
|
puts "Error: $GoodNbCurv is expected but [expr {$ic - 1}] is found!"
|
|
}
|