Browse Source

Math: fixed *::data() documentation.

pull/34/head
Vladimír Vondruš 13 years ago
parent
commit
4aadfd0828
  1. 2
      src/Math/RectangularMatrix.h
  2. 2
      src/Math/Vector.h

2
src/Math/RectangularMatrix.h

@ -159,7 +159,7 @@ template<std::size_t cols, std::size_t rows, class T> class RectangularMatrix {
/**
* @brief Raw data
* @return One-dimensional array of `size*size` length in column-major
* @return One-dimensional array of `cols*rows` length in column-major
* order.
*
* @see operator[]

2
src/Math/Vector.h

@ -180,7 +180,7 @@ template<std::size_t size, class T> class Vector {
/**
* @brief Raw data
* @return One-dimensional array of `size*size` length.
* @return One-dimensional array of `size` length.
*
* @see operator[]()
*/

Loading…
Cancel
Save