------------------------------------------------------------------------------------------------ Get a aiUVTransform (5 floats) from the material
| 294 | // ------------------------------------------------------------------------------------------------ |
| 295 | // Get a aiUVTransform (5 floats) from the material |
| 296 | aiReturn aiGetMaterialUVTransform(const aiMaterial *pMat, |
| 297 | const char *pKey, |
| 298 | unsigned int type, |
| 299 | unsigned int index, |
| 300 | aiUVTransform *pOut) { |
| 301 | unsigned int iMax = 5; |
| 302 | return aiGetMaterialFloatArray(pMat, pKey, type, index, reinterpret_cast<ai_real *>(pOut), &iMax); |
| 303 | } |
| 304 | |
| 305 | // ------------------------------------------------------------------------------------------------ |
| 306 | // Get a string from the material |
nothing calls this directly
no test coverage detected