mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
readstl syntax has been modified, so that it creates a single-face triangulation by default. The argument "trinagulation" is no more supported. The new argument "-brep" has been introduced to generate a compound of per-triangle faces instead (old default behavior of the command).
26 lines
757 B
Plaintext
Executable File
26 lines
757 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] -brep
|
|
|
|
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} -brep
|
|
|
|
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
|