1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
kgv 16f9b46dbb 0032612: Data Exchange, RWGltf_CafReader - lost hierarchy of two nested compounds
RWGltf_GltfJsonParser::gltfParseSceneNode() - prevent flattering of Scene nodes
(allow flattering only of Mesh nodes).

Added command XAutoNaming managing XCAFDoc_ShapeTool::SetAutoNaming().
Added comparisons with reference Xdump data to glTF tests.
2021-10-12 20:08:57 +03:00

30 lines
893 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 5
set THE_REF_DUMP {
ASSEMBLY COMPOUND 0:1:1:1 "ASSEMBLY"
INSTANCE COMPOUND 0:1:1:1:1 (refers to 0:1:1:2) "ASSEMBLY"
INSTANCE COMPOUND 0:1:1:1:2 (refers to 0:1:1:4) "ASSEMBLY"
ASSEMBLY COMPOUND 0:1:1:2 "ASSEMBLY"
INSTANCE COMPOUND 0:1:1:2:1 (refers to 0:1:1:3) "SOLID"
PART COMPOUND 0:1:1:3 "SOLID"
ASSEMBLY COMPOUND 0:1:1:4 "ASSEMBLY"
INSTANCE COMPOUND 0:1:1:4:1 (refers to 0:1:1:5) "SOLID"
PART COMPOUND 0:1:1:5 "SOLID"
Free Shapes: 1
ASSEMBLY COMPOUND 0:1:1:1 "ASSEMBLY"
}
checkXDump D $THE_REF_DUMP