MCPcopy Create free account
hub / github.com/assimp/assimp / MappingModeToChar

Function MappingModeToChar

code/PostProcessing/TextureTransform.cpp:183–191  ·  view source on GitHub ↗

------------------------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

181
182// ------------------------------------------------------------------------------------------------
183inline 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// ------------------------------------------------------------------------------------------------
194void TextureTransformStep::Execute( aiScene* pScene) {

Callers 1

ExecuteMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected