mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
24 lines
600 B
Plaintext
Executable File
24 lines
600 B
Plaintext
Executable File
puts "========"
|
|
puts "OCC513"
|
|
puts "========"
|
|
puts ""
|
|
|
|
######################################
|
|
## Can not intersect plane and conical surfaces
|
|
## The ">intersect" command hangs up the computer.
|
|
######################################
|
|
|
|
# cpulimit 9000
|
|
|
|
restore [locate_data_file OCC513a.draw] sa23
|
|
restore [locate_data_file OCC513b.draw] sb8
|
|
|
|
if { [catch {intersect result sa23 sb8} catch_result] } {
|
|
puts "Faulty OCC513: function INTERSECTION works wrongly"
|
|
} else {
|
|
puts "OCC513 OK: function INTERSECTION works properly"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|