mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
39 lines
912 B
Plaintext
39 lines
912 B
Plaintext
puts "========"
|
|
puts "0032612: Data Exchange, RWGltf_CafReader - lost hierarchy of two nested compounds"
|
|
puts "========"
|
|
|
|
set aTmpGltf "${imagedir}/${casename}_tmp.glb"
|
|
|
|
box b 1 2 3
|
|
incmesh b 0.1
|
|
compound b c
|
|
compound c cc
|
|
|
|
Close *
|
|
XNewDoc D1
|
|
XAddShape D1 cc
|
|
SetName D1 [XFindShape D1 b] "box"
|
|
SetName D1 [XFindShape D1 c] "comp1"
|
|
SetName D1 [XFindShape D1 c]:1 "box_inst"
|
|
SetName D1 [XFindShape D1 cc] "comp2"
|
|
SetName D1 [XFindShape D1 cc]:1 "comp1_inst"
|
|
|
|
#XSave D1 "test.xbf"
|
|
WriteGltf D1 "$aTmpGltf"
|
|
|
|
ReadGltf D "$aTmpGltf"
|
|
XGetOneShape s D
|
|
checknbshapes s -face 6 -compound 3
|
|
|
|
set THE_REF_DUMP {
|
|
ASSEMBLY COMPOUND 0:1:1:1 "comp2"
|
|
INSTANCE COMPOUND 0:1:1:1:1 (refers to 0:1:1:2) "comp1_inst"
|
|
ASSEMBLY COMPOUND 0:1:1:2 "comp1_inst"
|
|
INSTANCE COMPOUND 0:1:1:2:1 (refers to 0:1:1:3) "box_inst"
|
|
PART COMPOUND 0:1:1:3 "box"
|
|
|
|
Free Shapes: 1
|
|
ASSEMBLY COMPOUND 0:1:1:1 "comp2"
|
|
}
|
|
checkXDump D $THE_REF_DUMP
|