| 311 | |
| 312 | template <typename T> |
| 313 | float Matrix3<T>::transformAngle(float angle) const { |
| 314 | Vec2 a = Vec2::withAngle(angle, 1.0f); |
| 315 | Matrix3 m = *this; |
| 316 | m[0][2] = 0; |
| 317 | m[1][2] = 0; |
| 318 | return m.transformVec2(a).angle(); |
| 319 | } |
| 320 | |
| 321 | template <typename T> |
| 322 | bool Matrix3<T>::operator==(Matrix3 const& m2) const { |
no test coverage detected