mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Splitting of subgroups bugs/modalg and bugs/moddata to optimise time of testing Correction of end file in group v3d Small correction of test case
26 lines
468 B
Plaintext
Executable File
26 lines
468 B
Plaintext
Executable File
puts "TODO OCC11111 ALL: Faulty OCC132"
|
|
|
|
puts "================"
|
|
puts "OCC538"
|
|
puts "================"
|
|
puts ""
|
|
|
|
restore [locate_data_file OCC538.brep] Face
|
|
checkshape Face
|
|
|
|
point p 0.2453959532714904 -1.246869357124329
|
|
|
|
set res1 [b2dclassify Face p]
|
|
set info_result [split ${res1}]
|
|
|
|
set ll [llength ${info_result}]
|
|
if {${ll} < 4} {
|
|
puts "Faulty OCC132"
|
|
} else {
|
|
if {[regexp {IN} $info_result]} {
|
|
puts "OCC132 : OK"
|
|
} else {
|
|
puts "Faulty OCC132"
|
|
}
|
|
}
|