mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
When merging triangulation of the faces skip those having no triangulation. Test case for the issue.
20 lines
427 B
Plaintext
20 lines
427 B
Plaintext
puts "========"
|
|
puts "0030389: Data Exchange - StlAPI_Writer does not check if the face has triangulation"
|
|
puts "========"
|
|
puts ""
|
|
|
|
box b 1 1 1
|
|
|
|
# mesh only 5 faces of the box
|
|
eval compound [lrange [explode b f] 0 4] cf
|
|
incmesh cf 0.1
|
|
|
|
# save box into stl
|
|
writestl b $imagedir/${casename}.stl
|
|
|
|
# read stl
|
|
readstl result $imagedir/${casename}.stl -brep
|
|
|
|
# check that it contains only 10 triangles
|
|
checknbshapes result -face 10
|