| 1032 | } |
| 1033 | |
| 1034 | Float4x4 Float4x4::TranslationMatrix(const Float3& t) |
| 1035 | { |
| 1036 | Float4x4 m; |
| 1037 | m.SetTranslation(t); |
| 1038 | return m; |
| 1039 | } |
| 1040 | |
| 1041 | bool Float4x4::operator==(const Float4x4& other) const |
| 1042 | { |
nothing calls this directly
no test coverage detected