Home
last modified time | relevance | path

Searched refs:jsonMesh (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dshape_container_composed_element.cpp225 auto jsonMesh = JsonUtil::Create(true); in GetMesh() local
226 if (render && jsonMesh) { in GetMesh()
234 jsonMesh->Put("value", jsonValueArray); in GetMesh()
235 jsonMesh->Put("column", std::to_string(render->GetColumn()).c_str()); in GetMesh()
236 jsonMesh->Put("row", std::to_string(render->GetRow()).c_str()); in GetMesh()
238 return jsonMesh; in GetMesh()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/
H A Dgltf2_exporter.cpp1848 json::value jsonMesh = json::value::object {}; in ExportMeshes()
1856 jsonMesh["primitives"] = move(jsonPrimitives); in ExportMeshes()
1862 jsonMesh["weights"] = mesh->weights; in ExportMeshes()
1865 jsonMesh["name"] = string_view(mesh->name); in ExportMeshes()
1868 jsonMesh["extras"] = move(jsonExtras); in ExportMeshes()
1870 jsonMeshes.array_.push_back(move(jsonMesh)); in ExportMeshes()