| 785 | // == Float3x3 ==================================================================================== |
| 786 | |
| 787 | Float3x3::Float3x3() |
| 788 | { |
| 789 | _11 = _22 = _33 = 1.0f; |
| 790 | _12 = _13 = 0.0f; |
| 791 | _21 = _23 = 0.0f; |
| 792 | _31 = _32 = 0.0f; |
| 793 | } |
| 794 | |
| 795 | Float3x3::Float3x3(const XMFLOAT3X3& m) |
| 796 | { |
nothing calls this directly
no outgoing calls
no test coverage detected