| 1303 | } |
| 1304 | |
| 1305 | static void Scene_UpdateObjectTransformation(luxcore::detail::SceneImpl *scene, |
| 1306 | const string &objName, |
| 1307 | const boost::python::object &transformation) { |
| 1308 | float mat[16]; |
| 1309 | GetMatrix4x4(transformation, mat); |
| 1310 | scene->UpdateObjectTransformation(objName, mat); |
| 1311 | } |
| 1312 | |
| 1313 | //------------------------------------------------------------------------------ |
| 1314 | // Glue for RenderConfig class |
nothing calls this directly
no test coverage detected