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_8/bug31479_1
azv 33c8a72788 0031479: Modeling Algorithms - exception on geometry transformation of triangulation-only shapes (without geometry surface)
* Avoid crash in BRepBuilderAPI_GTransform algorithm. The crash in BRepBuilder_Transform has been solved by 0032716.
* Move copying modifier to BRepTools package.
* Implement copying of triangulation in BRepTools_NurbsConvertModification.
* Implement transformation of a triangulation in BRepTools_GTrsfModification.
* Update test case bugs/mesh/bug22778 to clean the triangulation after conversion to NURBS (reproduce the same behavior as before).
2022-07-08 19:30:13 +03:00

32 lines
1.0 KiB
Plaintext

puts "================================================================="
puts "0031479: Modeling Algorithms - exceptiion geometry transformation"
puts " of triangulation-only shapes (without geometry surface) "
puts "================================================================="
puts ""
restore [locate_data_file bug31479_P-51-Mustang-2.brep] s
# reference data
regexp {([0-9+-.eE]*) faces.* ([0-9+-.eE]*) triangles.* ([0-9+-.eE]*) nodes} [trinfo s] full nbFaces nbTri nbNodes
regexp {Mass :\s*([0-9+-.eE]*)} [vprops s] full mass
set scale 2
set mass [expr $mass * $scale * $scale * $scale]
# scaling
tscale s 0 0 0 $scale -copymesh
checktrinfo s -face $nbFaces -nod $nbNodes -tri $nbTri
checkprops s -v $mass -eps 1.e-5
# rotation
trotate s 0 0 0 0 0 1 90 -copymesh
checktrinfo s -face $nbFaces -nod $nbNodes -tri $nbTri
checkprops s -v $mass -eps 1.e-5
# translation
ttranslate s 0 0 10 -copymesh
checktrinfo s -face $nbFaces -nod $nbNodes -tri $nbTri
checkprops s -v $mass -eps 1.e-5
checkview -display s -2d -path ${imagedir}/${test_image}.png