mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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
632 B
Plaintext
21 lines
632 B
Plaintext
puts "========"
|
|
puts "0031703: Data Exchange, RWGltf_CafWriter - add option putting textures inside GLB file as alternative to external references"
|
|
puts "Test case exporting glTF model into GLB file."
|
|
puts "========"
|
|
|
|
Close D1 -silent
|
|
ReadGltf D1 [locate_data_file bug30691_Lantern.glb]
|
|
|
|
set aTmpGltfBase "${imagedir}/${casename}_tmp"
|
|
set aTmpGltf "${aTmpGltfBase}.glb"
|
|
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 3 -compound 1
|
|
checktrinfo s -tri 5394 -nod 4145
|