1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_2/bug251_2
nbv e121dd4d58 0029910: Porting to Debian80-64 : Regressions in Modeling Algorithms
Adjusting test cases.
Creation of new test cases.
2018-08-07 17:49:52 +03:00

38 lines
849 B
Plaintext
Executable File

puts "================"
puts "OCC251: Section of two faces f1 and f2 depends on order of arguments: section r1 f1 f2 and section r2 f2 f1 give different results, one of result is invalid - overlapped edges."
puts "================"
puts ""
restore [locate_data_file OCC251.brep] f
explode f
checkshape f_1
checkshape f_2
bsection result f_2 f_1
explode result
foreach a [explode result e] {
foreach b [explode result e] {
if { ![regexp {not} [compare b_1 n_1]] } {
continue;
}
set coe [checkoverlapedges e1 e2 5.0e-5]
puts "$a <-> $b: $coe"
if { [regexp "Edges is not overlaped" $coe] != 1 } {
puts "Error: $a and $b are overlaped"
}
}
}
checkprops result -l 1.
checkshape result
checksection result -r 2
smallview
don result*
fit
checkview -screenshot -2d -path ${imagedir}/${test_image}.png