1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
ski 5747059b21 0026833: Create command checkview containing all viewer types
Created command checkview for displaying shapes.
2016-02-05 11:14:37 +03:00

33 lines
784 B
Plaintext
Executable File

puts "============"
puts "OCC22723"
puts "============"
puts ""
#######################################################################
# Wrong intersection curve for the case of intersection between cylinder and plane
#######################################################################
set BugNumber OCC22723
restore [locate_data_file bug22723_fz44.brep] b1
restore [locate_data_file bug22723_fz7.brep] b2
mksurface s1 b1
mksurface s2 b2
intersect result s1 s2
regexp {Parameters : ([-0-9.+eE]+) ([-0-9.+eE]+)} [dump result] full a1 a2
set status 0
if { ${a1}>=0 } {
if { ${a2}<6.29 } {
set status 1
}
}
if { ${status}==1 } {
puts "OK ${BugNumber}"
} else {
puts "Faulty ${BugNumber}"
}
checkview -display result -2d -path ${imagedir}/${test_image}.png