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_6/bug27875
nbv 84bd25527c 0027875: GeomFill_NSections constructor crash on sequence of curve containing only one curve
The GeomFill_NSections algorithm cannot create any surface from sequence with single curve only.

Therefore, return is provided in corresponding place of the code. Additionally, some public methods of GeomFill_NSections class checks if the surface has been created earlier.

Test case for this issue has been created.

Compiler error has been eliminated.
2016-09-22 12:27:14 +03:00

20 lines
547 B
Plaintext

puts "================"
puts "OCC27875"
puts "================"
puts ""
###############################
## GeomFill_NSections constructor crash on sequence of curve containing only one curve
###############################
# GeomFill_NSections does not work if the sequence of curves contains only single curve.
# Therefore, we should not expect any correct result from this operation. However, the
# exception must not be thrown.
pload QAcommands
restore [locate_data_file OCC606_2.brep] w2
explode w2 e
mkcurve cc w2_1
trim cc cc
OCC27875 cc