| 1141 | } |
| 1142 | |
| 1143 | string GetMorphPath(const string& base_model, const string& morph) { |
| 1144 | return base_model.substr(0, base_model.size() - 4) + "_" + morph + ".obj"; |
| 1145 | } |
| 1146 | |
| 1147 | bool IsFile(Path& p) { |
| 1148 | return isFile(p.GetAbsPathStr().c_str()); |
no test coverage detected