| 42 | } |
| 43 | |
| 44 | FbxAMatrix FBXCorrectMatrix(const FbxAMatrix& mat) |
| 45 | { |
| 46 | if (!FBXIsValidMatrix(mat)) |
| 47 | { |
| 48 | /*FxOgreFBXLog("Detected invalid matrix:\n"); |
| 49 | logMatrix(mat); |
| 50 | FxOgreFBXLog("Returning identity matrix:\n");*/ |
| 51 | return FbxAMatrix(); |
| 52 | } |
| 53 | return mat; |
| 54 | } |
| 55 | |
| 56 | static void InitializeSdkObjects(FbxManager*& pManager, FbxScene*& pScene) |
| 57 | { |
no test coverage detected