------------------------------------------------------------------------------------------------
| 166 | |
| 167 | // ------------------------------------------------------------------------------------------------ |
| 168 | void ObjExporter::WriteHeader(std::ostringstream& out) { |
| 169 | out << "# File produced by Open Asset Import Library (http://www.assimp.sf.net)" << endl; |
| 170 | out << "# (assimp v" << aiGetVersionMajor() << '.' << aiGetVersionMinor() << '.' |
| 171 | << aiGetVersionRevision() << ")" << endl << endl; |
| 172 | } |
| 173 | |
| 174 | // ------------------------------------------------------------------------------------------------ |
| 175 | std::string ObjExporter::GetMaterialName(unsigned int index) { |
nothing calls this directly
no test coverage detected