1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/step/bug30087
gka 06a505ba53 0030087: Invalid result of the translation of the assembly when relating and related products are mixed in the SRR entity
Detection of specific case of error in the definition of transformation matrix describing position of the component within assembly, when it has Axis Placements swapped, is corrected to handle the case when one of these Axis Placements is contained in both Shape Representations (of the assembly and its component).
This allows the problematic STEP file to be translated correctly.

Added test bugs step bug30087
2018-09-03 15:48:41 +03:00

20 lines
849 B
Plaintext

puts "# ====================================================================="
puts "# 30087: Data Exchange, STEP - invalid result of translation of assembly when relating and related products are mixed in the SRR entity"
puts "# ====================================================================="
puts ""
set filepath [locate_data_file bug30087.stp]
stepread $filepath a *
tpcompound result
puts "Check dimensions of the result -- will be different if some parts are misplaced"
set values [bounding result]
set expected { -0.66 -0.33 -11. 70.66 140.66 10. }
set components {XMin YMin ZMin XMax YMax ZMax }
for {set i 0} {$i < 6} {incr i} {
checkreal [lindex $components $i] [lindex $values $i] [lindex $expected $i] 0.1 0
}
puts "Make snapshot to have visual check as well"
checkview -display result -2d -path ${imagedir}/${test_image}.png