mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-05 04:46:01 +08:00
9d1c5188ae
Added check for degenerated edges. Test case for issue CR24213
18 lines
430 B
Plaintext
18 lines
430 B
Plaintext
puts "============"
|
|
puts "OCC24213"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# bopargcheck complains on sphere
|
|
######################################################
|
|
|
|
psphere s 10
|
|
|
|
set info [bopargcheck s #F]
|
|
|
|
if { [regexp "to be valid for BOP" ${info}] != 1 } {
|
|
puts "Error : complain of bopargcheck command is not correct"
|
|
} else {
|
|
puts "OK : bopargcheck command work properly"
|
|
}
|