mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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).
16 lines
332 B
Plaintext
16 lines
332 B
Plaintext
# Read brep file
|
|
restore [locate_data_file bug28840_2.brep] m
|
|
|
|
# Mesh it
|
|
incmesh m 1.0
|
|
|
|
# Save, read and delete file
|
|
writestl m $imagedir/${casename}
|
|
readstl res $imagedir/${casename}
|
|
file delete $imagedir/${casename}
|
|
|
|
checktrinfo res -tri 290 -nod 147
|
|
|
|
# Visual check
|
|
checkview -display res -2d -path ${imagedir}/${test_image}.png
|