MCPcopy Create free account
hub / github.com/beefytech/Beef / FBXConvertMatrix

Function FBXConvertMatrix

BeefySysLib/fbx/FBXReader.cpp:542–553  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

540}
541
542static FbxAMatrix FBXConvertMatrix(const FbxMatrix& mat)
543{
544 FbxVector4 trans, shear, scale;
545 FbxQuaternion rot;
546 double sign;
547 mat.GetElements(trans, rot, shear, scale, sign);
548 FbxAMatrix ret;
549 ret.SetT(trans);
550 ret.SetQ(rot);
551 ret.SetS(scale);
552 return ret;
553}
554
555int FBXReader::FBXGetJointIndex(FbxNode* pNode)
556{

Callers 1

LoadBindPoseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected