| 117 | } |
| 118 | |
| 119 | std::tuple<float, float, float> ScriptAPI::world_size() const { |
| 120 | const glm::vec3 size = simulation_.world().getWorldSize(); |
| 121 | return {size.x, size.y, size.z}; |
| 122 | } |
| 123 | |
| 124 | std::tuple<int, std::vector<std::string>> ScriptAPI::load_molecules(const std::string& path) { |
| 125 | std::vector<std::string> loadedNames = loadMoleculesFrom(path); |
nothing calls this directly
no outgoing calls
no test coverage detected