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.
72 lines
1.6 KiB
Plaintext
72 lines
1.6 KiB
Plaintext
puts "========"
|
|
puts "OCC565: Can not intersect two trimmed conical surfaces"
|
|
puts "========"
|
|
puts ""
|
|
|
|
set GoodNbCurv 1
|
|
|
|
foreach c [directory result*] {
|
|
unset $c
|
|
}
|
|
|
|
foreach c [directory inf*] {
|
|
unset $c
|
|
}
|
|
|
|
restore [locate_data_file OCC565a.draw] s1
|
|
restore [locate_data_file OCC565b.draw] s2
|
|
|
|
puts "Preliminary check: intersection work with infinite cones:"
|
|
if { [catch {intersect inf s1 s2 } catch_result] } {
|
|
puts "Faulty OCC565: function intersection works wrongly with infinite cones"
|
|
} else {
|
|
set isFound 0
|
|
foreach c [directory inf*] {
|
|
set ind [string first "3d curve" [whatis $c]]
|
|
if {${ind} < 0} {
|
|
dump $c
|
|
puts "Error: Intersection result (with infinite cones) is not 3D-curve"
|
|
} else {
|
|
set isFound 1
|
|
}
|
|
}
|
|
|
|
if { !$isFound } {
|
|
puts "Error: Empty intersection result (with infinite cones)"
|
|
}
|
|
}
|
|
|
|
trim s1x s1 0 2*pi 0 2.8
|
|
trim s2x s2 0 2*pi 0 2.8
|
|
|
|
if { [catch {intersect result s1x s2x } catch_result] } {
|
|
puts "Faulty OCC565 exception: function intersection works wrongly with trimmed cones"
|
|
} else {
|
|
foreach c [directory result*] {
|
|
bounds $c U1 U2
|
|
|
|
if {[dval U2-U1] < 1.0e-9} {
|
|
puts "Error: Wrong curve's range!"
|
|
}
|
|
|
|
xdistcs $c s1 U1 U2 10 1.0e-7
|
|
xdistcs $c s2 U1 U2 10 1.0e-7
|
|
}
|
|
|
|
set NbCurv [llength [directory result*]]
|
|
|
|
if { $NbCurv == $GoodNbCurv } {
|
|
puts "OK: Number of curves is good!"
|
|
} else {
|
|
puts "Error: $GoodNbCurv is expected but $NbCurv is found!"
|
|
}
|
|
|
|
smallview
|
|
don result*
|
|
fit
|
|
disp s1x s2x
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
|
}
|
|
|
|
|