1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/xde/bug25357
ski 5d7a048985 0027126: Create command checktrinfo to verify meshes
Command checktrinfo was created.
Test cases were updated to use command checktrinfo.
2016-02-05 11:14:44 +03:00

29 lines
754 B
Plaintext

puts "=========="
puts "OCC25357"
puts "=========="
puts ""
#######################################################################################
# STL writer does not check the given shape for existing triangulation and remeshes
# shape using BRepMesh in force mode
#######################################################################################
set aFile ${imagedir}/${test_image}.stl
file delete -force ${aFile}
set anASCIImode 0
ptorus res 10 8
incmesh res 0.5
set LogBefore [trinfo res]
writestl res ${aFile} ${anASCIImode}
checktrinfo res -ref "${LogBefore}"
if { ![file exists ${aFile}] || [ file size ${aFile} ] == 0 } {
puts "Error: STL writer does not check given shape"
} else {
puts "OK: STL writer check given shape"
}