1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00
occt/tests/bugs/modalg_8/bug33591
astromko 4c5f9c77cb Modeling - Removing surface after transformation #374
Old surface is not removed after translation or rotation with geometry copying
Removed unnecessary condition that was added by an earlier fix.
Added a test case.
Original issue: 0033591
2025-02-17 14:12:43 +00:00

19 lines
514 B
Plaintext

puts "========================"
puts "0033591: Modeling Algorithms - Regression: old surface is not removed after translation or rotation with geometry copying"
puts "========================"
puts ""
pload MODELING
psphere Sphere_1 80
trotate Sphere_1 0 0 0 0 1 0 90 -copy
ttranslate Sphere_1 0 0 200 -copy
catch {dump Sphere_1} dumpOutput
if {[regexp {Dump of ([0-9]+) surfaces} $dumpOutput match num]} {
set numSurfaces $num
}
if {$numSurfaces != 1} {
puts "Error: The number of surfaces must be 1"
}