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

Function aiTransformVecByMatrix4

code/Common/Assimp.cpp:629–635  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

627
628// ------------------------------------------------------------------------------------------------
629ASSIMP_API void aiTransformVecByMatrix4(aiVector3D *vec,
630 const aiMatrix4x4 *mat) {
631 ai_assert(nullptr != mat);
632 ai_assert(nullptr != vec);
633
634 *vec *= (*mat);
635}
636
637// ------------------------------------------------------------------------------------------------
638// Matrix multiplication

Callers 2

TEST_FFunction · 0.85

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.68