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_7/bug30433
ifv 6f2411378b 0030433: Checkshape: bad solid, created by revolution, is reported as valid.
BRepPrimAPI_MakeRevol.cxx, hxx
Insert checking of self-intersecting of generated surfaces in MakeRevol

BRepTest_SweepCommands.cxx
Adjusting command revol to current behavior of MakeRevol algorithm.
2019-05-06 15:57:56 +03:00

20 lines
365 B
Plaintext

puts "========"
puts "0030433: Checkshape: bad solid, created by revolution, is reported as valid."
puts "========"
puts ""
ellipse e1 0 0 0 200 100
mkedge ell1 e1
wire w1 ell1
plane p1
mkface fe1 p1 w1
revol rev1 fe1 0 0 0 1 0 0 180 1
if { [isdraw rev1] != 1 } {
puts "OK: wrong shape is not created"
} else {
puts "Error: algorithm created wrong shape"
}