| 94 | } |
| 95 | |
| 96 | void addThreeMaterial(std::vector<ThreeMaterial>& materials, std::map<std::string, std::string>& materialMap, const ThreeMaterial& material) { |
| 97 | materialMap[material.name()] = material.uuid(); |
| 98 | materials.push_back(material); |
| 99 | } |
| 100 | |
| 101 | std::string getThreeMaterialId(const std::string& materialName, std::map<std::string, std::string>& materialMap) { |
| 102 | auto it = materialMap.find(materialName); |
no test coverage detected