| 527 | |
| 528 | template <class T> |
| 529 | bool |
| 530 | Matrix22<T>::equalWithAbsError (const Matrix22<T> &m, T e) const |
| 531 | { |
| 532 | for (int i = 0; i < 2; i++) |
| 533 | for (int j = 0; j < 2; j++) |
| 534 | if (!Imath::equalWithAbsError ((*this)[i][j], m[i][j], e)) |
| 535 | return false; |
| 536 | |
| 537 | return true; |
| 538 | } |
| 539 | |
| 540 | template <class T> |
| 541 | bool |
nothing calls this directly
no outgoing calls
no test coverage detected