1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0023698: BRepBuilderAPI_Copy creates invalid copy

Added test case bugs/modalg_5/bug23698
This commit is contained in:
apn 2014-10-20 16:00:44 +04:00 committed by bugmaster
parent 196b01482b
commit e1cbc34c5f
2 changed files with 24 additions and 5 deletions

View File

@ -4,8 +4,3 @@ bcommon result b a
set length 942.478
set nbsh_v 2
set nbsh_e 2
# OCC23698
tcopy result r
lprops result
lprops r

View File

@ -0,0 +1,24 @@
puts "========"
puts "OCC23698"
puts "========"
puts ""
##############################################
# BRepBuilderAPI_Copy creates invalid copy
##############################################
restore [locate_data_file case_1_solid.brep] a
restore [locate_data_file case_1_wire3.brep] b
bcommon result b a
tcopy result r
regexp {Mass +: +([-0-9.+eE]+)} [lprops result] full anEdge
if { ${anEdge} == 0 } {
puts "Error: Common operation is wrong"
}
regexp {Mass +: +([-0-9.+eE]+)} [lprops r] full aCopyEdge
if { ${anEdge} != ${aCopyEdge} } {
puts "Error: Copy is wrong"
} else {
puts "OK: Copy is correct"
}