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.
60 lines
2.0 KiB
Plaintext
60 lines
2.0 KiB
Plaintext
puts "TODO OCC27950 ALL: ERROR: OCC27950 is reproduced."
|
|
|
|
puts "========"
|
|
puts "OCC27950"
|
|
puts "========"
|
|
puts ""
|
|
############################################################################
|
|
# Result of intersection algorithm depends too much on surface trim bounds
|
|
############################################################################
|
|
|
|
restore [locate_data_file bug27950_s1.draw] s1
|
|
restore [locate_data_file bug27950_s2.draw] s2
|
|
|
|
set bug_info [string trim [intersect i1 s1 s2]]
|
|
if {[llength $bug_info] != 4} {
|
|
puts "ERROR: OCC27950 is reproduced. Step #1. Result of intersection is [llength $bug_info]."
|
|
}
|
|
|
|
trimv s2t s2 200 300
|
|
set bug_info [string trim [intersect i2 s1 s2t]]
|
|
if {[llength $bug_info] != 4} {
|
|
puts "ERROR: OCC27950 is reproduced. Step #2. Result of intersection is [llength $bug_info]."
|
|
}
|
|
|
|
trimv s2t s2 200 220
|
|
set bug_info [string trim [intersect i3 s1 s2t]]
|
|
if {[llength $bug_info] != 4} {
|
|
puts "ERROR: OCC27950 is reproduced. Step #3. Result of intersection is [llength $bug_info]."
|
|
}
|
|
|
|
trimv s2t s2 205.38050051360744 210.55652011282123
|
|
set bug_info [string trim [intersect i4 s1 s2t]]
|
|
if {[llength $bug_info] != 4} {
|
|
puts "ERROR: OCC27950 is reproduced. Step #4. Result of intersection is [llength $bug_info]."
|
|
}
|
|
|
|
trimv s2t s2 205 211
|
|
set bug_info [string trim [intersect i5 s1 s2t]]
|
|
if {[llength $bug_info] != 4} {
|
|
puts "ERROR: OCC27950 is reproduced. Step #5. Result of intersection is [llength $bug_info]."
|
|
}
|
|
|
|
trimv s2t s2 206 210
|
|
set bug_info [string trim [intersect i6 s1 s2t]]
|
|
if {[llength $bug_info] != 4} {
|
|
puts "ERROR: OCC27950 is reproduced. Step #6. Result of intersection is [llength $bug_info]."
|
|
}
|
|
|
|
trimv s2t s2 205.4 210.575
|
|
set bug_info [string trim [intersect i7 s1 s2t]]
|
|
if {[llength $bug_info] != 4} {
|
|
puts "ERROR: OCC27950 is reproduced. Step #7. Result of intersection is [llength $bug_info]."
|
|
}
|
|
|
|
trimv s2t s2 205.353 210.529
|
|
set bug_info [string trim [intersect i8 s1 s2t]]
|
|
if {[llength $bug_info] != 4} {
|
|
puts "ERROR: OCC27950 is reproduced. Step #8. Result of intersection is [llength $bug_info]."
|
|
}
|