| 89 | const std::string UDIM_SEPARATORS = "._"; |
| 90 | |
| 91 | void writeTextFile(const std::string& text, const std::string& filePath) |
| 92 | { |
| 93 | std::ofstream file; |
| 94 | file.open(filePath); |
| 95 | file << text; |
| 96 | file.close(); |
| 97 | } |
| 98 | |
| 99 | void applyModifiers(mx::DocumentPtr doc, const DocumentModifiers& modifiers) |
| 100 | { |
no test coverage detected