mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
20 lines
547 B
Plaintext
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
|