MCPcopy Create free account
hub / github.com/CesiumGS/cesium-native / forEachNodeInScene

Method forEachNodeInScene

CesiumGltf/src/Model.cpp:608–619  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

606}
607
608void Model::forEachNodeInScene(
609 int32_t sceneID,
610 std::function<ForEachNodeInSceneCallback>&& callback) {
611 return const_cast<const Model*>(this)->forEachNodeInScene(
612 sceneID,
613 [&callback](
614 const Model& gltf,
615 const Node& node,
616 const glm::dmat4& transform) {
617 callback(const_cast<Model&>(gltf), const_cast<Node&>(node), transform);
618 });
619}
620
621void Model::forEachNodeInScene(
622 int32_t sceneID,

Callers 1

TestModel.cppFile · 0.80

Calls 2

forEachNodeFunction · 0.85

Tested by

no test coverage detected