mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
23 lines
555 B
Plaintext
Executable File
23 lines
555 B
Plaintext
Executable File
puts "========"
|
|
puts "CR25202"
|
|
puts "========"
|
|
puts ""
|
|
#########################################
|
|
## Incorrect value of IsClosed flag in shapes produced by some algorithms
|
|
#########################################
|
|
|
|
circle cc 0 100 0 20
|
|
mkedge ee cc
|
|
wire ww ee
|
|
mkplane ff ww
|
|
revol result ff 0 0 0 1 0 0 90
|
|
|
|
set info [whatis result]
|
|
if { [regexp {Closed} ${info}] != 1 } {
|
|
puts "OK : value of IsClosed flag is correct"
|
|
} else {
|
|
puts "Error : value of IsClosed flag is not correct"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|