------------------------------------------------------------------------------------------------
| 181 | |
| 182 | // ------------------------------------------------------------------------------------------------ |
| 183 | inline static const char* MappingModeToChar(aiTextureMapMode map) { |
| 184 | if (aiTextureMapMode_Wrap == map) |
| 185 | return "-w"; |
| 186 | |
| 187 | if (aiTextureMapMode_Mirror == map) |
| 188 | return "-m"; |
| 189 | |
| 190 | return "-c"; |
| 191 | } |
| 192 | |
| 193 | // ------------------------------------------------------------------------------------------------ |
| 194 | void TextureTransformStep::Execute( aiScene* pScene) { |