mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
BRepPrimAPI_MakeRevol.cxx: check of intersection of edge with rotation axis is improved. Test case added
35 lines
838 B
Plaintext
35 lines
838 B
Plaintext
puts "========"
|
|
puts "0031460: Modeling Algorithms - Regression: Revolution not done."
|
|
puts "========"
|
|
puts ""
|
|
|
|
circle cir 3 2.9999999999989 0 0 0 -1 -1 0 0 3
|
|
trim cir cir 4.71238898038469 6.28318530717959
|
|
mkedge e cir
|
|
|
|
## sector
|
|
revol r10 e 0 0 0 1 0 0 10 1
|
|
|
|
if { [isdraw r10] == 1 } {
|
|
if { [regexp "valid" [checkshape r10]] && [regexp "OK" [bopcheck r10 4]]} {
|
|
puts "OK: valid shape is created"
|
|
} else {
|
|
puts "Error: algorithm created wrong shape"
|
|
}
|
|
} else {
|
|
puts "Error: algorithm did not create shape"
|
|
}
|
|
|
|
## full revol
|
|
revol r360 e 0 0 0 1 0 0 360 1
|
|
|
|
if { [isdraw r360] == 1 } {
|
|
if { [regexp "valid" [checkshape r360]] && [regexp "OK" [bopcheck r360 4]]} {
|
|
puts "OK: valid shape is created"
|
|
} else {
|
|
puts "Error: algorithm created wrong shape"
|
|
}
|
|
} else {
|
|
puts "Error: algorithm did not create shape"
|
|
}
|