mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. src\BRepSweep\BRepSweep_NumLinearRegularSweep.cxx Fix bug by adding result in list of generated shapes, if initial shape is vertex, edge or face. 2. src\BRepLib\BRepLib.cxx Add protection against treatment not geometric edge in BRepLib::UpdateInnerTolerances(...) 3. Add test case for bug and correct test for bug 30346 according to new behavior of algorithm
16 lines
312 B
Plaintext
16 lines
312 B
Plaintext
puts "========"
|
|
puts "0031031: Incorrect result is returned from BRepPrimAPI_MakePrism::Generated()"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload MODELING
|
|
|
|
vertex v1 0 0 0
|
|
prism r1 v1 0 0 2
|
|
savehistory h1
|
|
set s1 [dump h1]
|
|
if { !([regexp "0 Deleted" $s1] && [regexp "1 Generated" $s1])} {
|
|
puts "Error: wrong history h1"
|
|
}
|
|
|