mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
25 lines
641 B
Plaintext
Executable File
25 lines
641 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC24142"
|
|
puts "================"
|
|
puts ""
|
|
#################################################################
|
|
## Wrong section curve
|
|
#################################################################
|
|
|
|
restore [locate_data_file OCC152.brep] sh
|
|
explode sh f
|
|
|
|
mksurface s1 sh_3
|
|
mksurface s2 sh_5
|
|
|
|
trim st1 s1 0 6.28318530717959 0 74.9999999999999
|
|
trim st2 s2 0 6.28318530717959 -74.0551172696384 125.944882730362
|
|
|
|
intersect cur st1 st2
|
|
|
|
if { [regexp -nocase "curve" [whatis cur]] } {
|
|
puts "Error: intersection curve is built while it should not"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|