MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / ToMatrix

Function ToMatrix

Source/Engine/Tools/ModelTool/ModelTool.Assimp.cpp:89–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87}
88
89Matrix ToMatrix(const aiMatrix4x4& mat)
90{
91 return Matrix(mat.a1, mat.b1, mat.c1, mat.d1,
92 mat.a2, mat.b2, mat.c2, mat.d2,
93 mat.a3, mat.b3, mat.c3, mat.d3,
94 mat.a4, mat.b4, mat.c4, mat.d4);
95}
96
97struct AssimpNode
98{

Callers 2

ProcessNodesFunction · 0.70
ProcessMeshFunction · 0.70

Calls 1

MatrixFunction · 0.50

Tested by

no test coverage detected