------------------------------------------------------------------------------------------------ Get an array of floating-point values from the material.
| 187 | // ------------------------------------------------------------------------------------------------ |
| 188 | // Get an array of floating-point values from the material. |
| 189 | aiReturn aiGetMaterialFloatArray(const aiMaterial *pMat, |
| 190 | const char *pKey, |
| 191 | unsigned int type, |
| 192 | unsigned int index, |
| 193 | ai_real *pOut, |
| 194 | unsigned int *pMax) { |
| 195 | return GetMaterialFloatArray(pMat, pKey, type, index, pOut, pMax); |
| 196 | } |
| 197 | |
| 198 | // ------------------------------------------------------------------------------------------------ |
| 199 | // Get an array if integers from the material |
no test coverage detected