1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_7/bug32717
kgv 18c678759e 0032717: Modeling Algorithms - BRepBuilderAPI_Copy should not remove triangulation from surface-less faces
BRepBuilderAPI_Copy now ignores toCopyMesh flag for non-geometric shapes.
2021-12-09 01:22:28 +03:00

18 lines
491 B
Plaintext

puts "================================================="
puts "0032717: Modeling Algorithms - BRepBuilderAPI_Copy should not remove triangulation from surface-less faces"
puts "================================================="
puts ""
pload XDE MODELING
box b 1 2 3
incmesh b 1
checktrinfo b -tri 12 -nod 24
tclean -geom b
trinfo b
checktrinfo b -tri 12 -nod 24
# check that copied triangulation-only shape is copied with triangulation
tcopy b bb
trinfo bb
checktrinfo bb -tri 12 -nod 24