mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- Extended command Close with an option -silent - Extended command Close to handle */-ALL for closing ALL document - Replaced catch {Close D} by Close D -silent in tests
21 lines
594 B
Plaintext
21 lines
594 B
Plaintext
puts "========"
|
|
puts "0030953: Data Exchange - implement export of mesh data into glTF 2.0 format"
|
|
puts "Test case exporting glTF model into glTF file."
|
|
puts "========"
|
|
|
|
Close D1 -silent
|
|
ReadGltf D1 [locate_data_file bug30691_DamagedHelmet.gltf]
|
|
|
|
set aTmpGltfBase "${imagedir}/${casename}_tmp"
|
|
set aTmpGltf "${aTmpGltfBase}.gltf"
|
|
lappend occ_tmp_files $aTmpGltf
|
|
lappend occ_tmp_files "${aTmpGltfBase}.bin"
|
|
lappend occ_tmp_files "${aTmpGltfBase}_textures"
|
|
|
|
WriteGltf D1 "$aTmpGltf"
|
|
|
|
ReadGltf D "$aTmpGltf"
|
|
XGetOneShape s D
|
|
checknbshapes s -face 1 -compound 0
|
|
checktrinfo s -tri 15452 -nod 14556
|