1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_5/bug25591
azv b7d2387022 0025591: Command mkshell produces wrong shell
The functionality to decide, whether the edge is degenerated, was shared via BRepLib_MakeFace. The verification of producing degenerated edges was added to BRepLib_MakeShell.

Test case for issue CR25591
2014-12-25 16:44:20 +03:00

19 lines
397 B
Plaintext

puts "============"
puts "OCC25591"
puts "============"
puts ""
#################################
# Command mkshell produces wrong shell
#################################
sphere surf 100
mkshell sh surf 1
explode sh e
catch {mkcurve csh_2 sh_2}
if { [llength [dump csh_2]] > 0 } {
puts "Error: Command mkshell produces wrong shell"
} else {
puts "OK: Command mkshell produces good shell"
}