| 45 | } |
| 46 | |
| 47 | bool GeometryHandler::hasGeometry(const string& location) |
| 48 | { |
| 49 | for (const auto& mesh : _meshes) |
| 50 | { |
| 51 | if (mesh->getSourceUri() == location) |
| 52 | { |
| 53 | return true; |
| 54 | } |
| 55 | } |
| 56 | return false; |
| 57 | } |
| 58 | |
| 59 | void GeometryHandler::getGeometry(MeshList& meshes, const string& location) |
| 60 | { |
no outgoing calls
no test coverage detected