1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +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

25 lines
575 B
Plaintext
Executable File

puts "========"
puts "OCC22733"
puts "========"
puts ""
###########################################################
# Empty result for the extrema between a circle and a line
###########################################################
set BugNumber OCC22733
restore [locate_data_file bug22733_ez4.brep] ez4
restore [locate_data_file bug22733_ez17.brep] ez17
mkcurve c4 ez4
mkcurve c17 ez17
set extrema_res [extrema c4 c17]
set extrema_length [llength ${extrema_res} ]
if {${extrema_length} != 1 } {
puts "${BugNumber}: Faulty"
} else {
puts "${BugNumber}: OK"
}