mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
26 lines
745 B
Plaintext
Executable File
26 lines
745 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC22670"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################################
|
|
# Regression in the method RWStl::WriteAscii
|
|
#######################################################################################
|
|
|
|
set BugNumber OCC22670
|
|
|
|
readstl res_mesh [locate_data_file OMF6391_box.stl]
|
|
|
|
set aFile ${imagedir}/OCC22670.stl
|
|
file delete ${aFile}
|
|
|
|
incmesh res_mesh 0.1
|
|
|
|
set anASCIImode 0
|
|
writestl res_mesh ${aFile} ${anASCIImode}
|
|
catch {exec chmod 777 ${aFile}}
|
|
|
|
readstl result ${aFile}
|
|
|
|
checknbshapes result -vertex 8 -edge 18 -wire 12 -face 12 -shell 1 -solid 0 -compsolid 0 -compound 0 -shape 51
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|