Browse Source

Fixed copypaste error in Matrix3::translation().

vectorfields
Vladimír Vondruš 14 years ago
parent
commit
5f822d0c9b
  1. 2
      src/Math/Matrix3.h

2
src/Math/Matrix3.h

@ -137,7 +137,7 @@ template<class T> class Matrix3: public Matrix<3, T> {
}
/** @overload */
inline constexpr Vector3<T> translation() const {
inline constexpr Vector2<T> translation() const {
return (*this)[2].xy();
}

Loading…
Cancel
Save