Browse Source

Removed long-deprecated Matrix2 and Matrix2d typedefs.

Use Matrix2x2 and Matrix2x2d instead.
pull/51/head
Vladimír Vondruš 12 years ago
parent
commit
dc2c13c9d2
  1. 16
      src/Magnum/Magnum.h

16
src/Magnum/Magnum.h

@ -234,14 +234,6 @@ typedef Math::Matrix2x2<Float> Matrix2x2;
typedef Math::Matrix<2, Float> Matrix2x2;
#endif
#ifdef MAGNUM_BUILD_DEPRECATED
/**
@copybrief Matrix2x2
@deprecated Use @ref Magnum::Matrix2x2 "Matrix2x2" instead.
*/
typedef Math::Matrix<2, Float> Matrix2;
#endif
/**
@brief 3x3 float matrix
@ -411,14 +403,6 @@ typedef Math::Matrix2x2<Double> Matrix2x2d;
typedef Math::Matrix<2, Double> Matrix2x2d;
#endif
#ifdef MAGNUM_BUILD_DEPRECATED
/**
@copybrief Matrix2x2d
@deprecated Use @ref Magnum::Matrix2x2d "Matrix2x2d" instead.
*/
typedef CORRADE_DEPRECATED("use Matrix2x2d instead") Math::Matrix<2, Double> Matrix2d;
#endif
/**
@brief 3x3 double matrix

Loading…
Cancel
Save