mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Implementation of method "IsDeleted(...)" for MakeRevol and MakePrism algorithms. Problem (exception) occurs during history building and was caused by an attempt to obtain generated shape for subshape, which was really "deleted" by algorithm - this input subshape and its possible generated shape was not used in result.
22 lines
522 B
Plaintext
22 lines
522 B
Plaintext
puts "========"
|
|
puts "0030346: Modeling Algorithms - BRepPrimAPI_MakeRevol throws BRepSweep_Translation::MakeEmptyVertex"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload MODELING
|
|
|
|
plane f 0 0 0 0 1 0
|
|
mkface f f 0 1 0 1
|
|
revol r1 f 0 0 0 0 0 1 60
|
|
savehistory h1
|
|
set s1 [dump h1]
|
|
if { !([regexp "0 Deleted" $s1] && [regexp "6 Generated" $s1])} {
|
|
puts "Error: wrong history h1"
|
|
}
|
|
revol r2 f 0 0 0 0 0 1 360
|
|
savehistory h2
|
|
set s2 [dump h2]
|
|
if { !([regexp "6 Deleted" $s2] && [regexp "3 Generated" $s2])} {
|
|
puts "Error: wrong history h2"
|
|
}
|