| 707 | } |
| 708 | |
| 709 | void PyScene::set_node_transform(const std::string& name, nb::ndarray<float, nb::shape<4, 4>> transform) { |
| 710 | apply_node_transform_with_undo(name, ndarray_to_mat4(transform), scene_); |
| 711 | } |
| 712 | |
| 713 | void PyScene::set_node_transform_tensor(const std::string& name, const PyTensor& transform) { |
| 714 | const auto& t = transform.tensor(); |
no test coverage detected