|
|
|
@ -141,9 +141,10 @@ CORRADE_IGNORE_DEPRECATED_PUSH |
|
|
|
/**
|
|
|
|
/**
|
|
|
|
@brief One-dimensional array |
|
|
|
@brief One-dimensional array |
|
|
|
@tparam T Data type |
|
|
|
@tparam T Data type |
|
|
|
@m_deprecated_since_latest Use @ref Math::Vector instead. |
|
|
|
@m_deprecated_since_latest Use @ref Math::Vector or @ref Containers::Array1 |
|
|
|
|
|
|
|
instead. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
template<class T> class CORRADE_DEPRECATED("use Math::Vector instead") Array1D: public Array<1, T> { |
|
|
|
template<class T> class CORRADE_DEPRECATED("use Math::Vector or Containers::Array1 instead") Array1D: public Array<1, T> { |
|
|
|
public: |
|
|
|
public: |
|
|
|
/** @copydoc Array::Array() */ |
|
|
|
/** @copydoc Array::Array() */ |
|
|
|
constexpr /*implicit*/ Array1D() = default; |
|
|
|
constexpr /*implicit*/ Array1D() = default; |
|
|
|
@ -164,9 +165,10 @@ template<class T> class CORRADE_DEPRECATED("use Math::Vector instead") Array1D: |
|
|
|
/**
|
|
|
|
/**
|
|
|
|
@brief Two-dimensional array |
|
|
|
@brief Two-dimensional array |
|
|
|
@tparam T Data type |
|
|
|
@tparam T Data type |
|
|
|
@m_deprecated_since_latest Use @ref Math::Vector2 instead. |
|
|
|
@m_deprecated_since_latest Use @ref Math::Vector2 or @ref Containers::Array2 |
|
|
|
|
|
|
|
instead. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
template<class T> class CORRADE_DEPRECATED("use Math::Vector2 instead") Array2D: public Array<2, T> { |
|
|
|
template<class T> class CORRADE_DEPRECATED("use Math::Vector2 or Containers::Array2 instead") Array2D: public Array<2, T> { |
|
|
|
public: |
|
|
|
public: |
|
|
|
/** @copydoc Array::Array() */ |
|
|
|
/** @copydoc Array::Array() */ |
|
|
|
constexpr /*implicit*/ Array2D() = default; |
|
|
|
constexpr /*implicit*/ Array2D() = default; |
|
|
|
@ -198,9 +200,10 @@ template<class T> class CORRADE_DEPRECATED("use Math::Vector2 instead") Array2D |
|
|
|
/**
|
|
|
|
/**
|
|
|
|
@brief Three-dimensional array |
|
|
|
@brief Three-dimensional array |
|
|
|
@tparam T Data type |
|
|
|
@tparam T Data type |
|
|
|
@m_deprecated_since_latest Use @ref Math::Vector3 instead. |
|
|
|
@m_deprecated_since_latest Use @ref Math::Vector3 or @ref Containers::Array3 |
|
|
|
|
|
|
|
instead. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
template<class T> class CORRADE_DEPRECATED("use Math::Vector3 instead") Array3D: public Array<3, T> { |
|
|
|
template<class T> class CORRADE_DEPRECATED("use Math::Vector3 or Containers::Array3 instead") Array3D: public Array<3, T> { |
|
|
|
public: |
|
|
|
public: |
|
|
|
/** @copydoc Array::Array() */ |
|
|
|
/** @copydoc Array::Array() */ |
|
|
|
constexpr /*implicit*/ Array3D() {} |
|
|
|
constexpr /*implicit*/ Array3D() {} |
|
|
|
|