| 118 | } |
| 119 | |
| 120 | void pythonClearScene() |
| 121 | { |
| 122 | MR::CommandLoop::runCommandFromGUIThread( [] () |
| 123 | { |
| 124 | MR::SceneRoot::get().removeAllChildren(); |
| 125 | } ); |
| 126 | } |
| 127 | |
| 128 | template <typename ObjectType, typename ModelType, auto SetterFunc, typename ...P> |
| 129 | void pythonAddModelToScene( const ModelType& model, const std::string& name, P&&... params ) |
nothing calls this directly
no test coverage detected