mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
25 lines
677 B
Plaintext
Executable File
25 lines
677 B
Plaintext
Executable File
puts "========================"
|
|
puts " BUC60980 "
|
|
puts " OCC360"
|
|
puts "========================"
|
|
puts ""
|
|
##################################################################
|
|
## Can not find a projection the circle on the sphere.
|
|
##################################################################
|
|
|
|
restore [locate_data_file OCC360a.draw] c
|
|
restore [locate_data_file OCC360b.draw] cf
|
|
|
|
set che [project result c cf]
|
|
puts $che
|
|
|
|
if { [regexp {Projection} $che] && [regexp {Failed} $che] } {
|
|
puts "Faulty OCC360: command PROJECT works wrongly"
|
|
} else {
|
|
puts " OCC360 OK : command PROJECT works properly"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|
|
|