mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Added new class RWGltf_CafWriter for exporting XCAF document into glTF file as well as Draw Harness command WriteGltf. Added auxiliary method OSD_Path::FileNameAndExtension() splitting file name into Name and Extension.
14 lines
385 B
Plaintext
14 lines
385 B
Plaintext
puts "========"
|
|
puts "0030953: Data Exchange - implement export of mesh data into glTF 2.0 format"
|
|
puts "Test case exporting BRep model into glb (binary glTF) file."
|
|
puts "========"
|
|
|
|
restore [locate_data_file Ball.brep] b
|
|
incmesh b 0.1
|
|
set aTmpGltf "${imagedir}/${casename}_tmp.glb"
|
|
writegltf b "$aTmpGltf"
|
|
|
|
ReadGltf D "$aTmpGltf"
|
|
XGetOneShape s D
|
|
checknbshapes s -face 17 -compound 3
|