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/bug32716_2
abulyche 315ed0be41 0032716: Modeling Algorithms - BRepBuilderAPI_Transform discards triangulation
* Implement methods for copying tessellation to BRepTools_TrsfModification to keep the triangulation during transformation.
* Add tests to reproduce the problem.
2022-07-08 19:30:13 +03:00

58 lines
1.3 KiB
Plaintext

puts "================================================================="
puts "0032716: Modeling Algorithms - BRepBuilderAPI_Transform discards triangulation"
puts "================================================================="
puts ""
psphere s1 10
pcylinder s2 8 20
pcone s3 10 8 5
ttranslate s1 0 0 25
ttranslate s3 0 0 -5
baddobjects s1
baddtools s2 s3
bfillds
bbop s fuse
incmesh s 0.1
# reference data
regexp {([0-9+-.eE]*) faces.* ([0-9+-.eE]*) triangles.* ([0-9+-.eE]*) nodes} [trinfo s] full nbFaces nbTri nbNodes
# scaling
tscale s 0 0 0 2 -copy -copymesh
checkshape s
checktrinfo s -face $nbFaces -nod $nbNodes -tri $nbTri
if {[tricheck s] != ""} {
puts "ERROR: Wrong triangulation"
}
# mirror
tmirror s 1 0 0 1 1 1 -copy -copymesh
checkshape s
checktrinfo s -face $nbFaces -nod $nbNodes -tri $nbTri
if {[tricheck s] != ""} {
puts "ERROR: Wrong triangulation"
}
# translate
ttranslate s 0 0 10 -copy -copymesh
checkshape s
checktrinfo s -face $nbFaces -nod $nbNodes -tri $nbTri
if {[tricheck s] != ""} {
puts "ERROR: Wrong triangulation"
}
# rotate
trotate s 0 0 0 0 0 1 45 -copy -copymesh
checkshape s
checktrinfo s -face $nbFaces -nod $nbNodes -tri $nbTri
if {[tricheck s] != ""} {
puts "ERROR: Wrong triangulation"
}
# display shape
triangles s
isos s 0
checkview -display s -2d -path ${imagedir}/${test_image}.png