------------------------------------------------------------------------------------------------
| 612 | |
| 613 | // ------------------------------------------------------------------------------------------------ |
| 614 | ASSIMP_API void aiTransposeMatrix4(aiMatrix4x4 *mat) { |
| 615 | ai_assert(nullptr != mat); |
| 616 | mat->Transpose(); |
| 617 | } |
| 618 | |
| 619 | // ------------------------------------------------------------------------------------------------ |
| 620 | // Vector transformation |
no outgoing calls