From 460d9bda5f03c5da29864fa9dd160848097be51b Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Sat, 6 Jan 2018 11:36:50 +0000 Subject: [Travis] Rebuilding documentation --- matrix_8h_source.html | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'matrix_8h_source.html') diff --git a/matrix_8h_source.html b/matrix_8h_source.html index 2aae5287..03d29a59 100644 --- a/matrix_8h_source.html +++ b/matrix_8h_source.html @@ -132,24 +132,24 @@ $(document).ready(function(){initNavTree('matrix_8h_source.html','');});
47 class Row
48 {
49 private:
-
50  Matrix<Rows, Cols, Type> *parent_;
-
51  int index_;
+
50  Matrix<Rows, Cols, Type> *parent_;
+
51  int index_;
52 
53 public:
54  Row<Rows, Cols, Type>(Matrix<Rows, Cols, Type> *parent, int index)
-
55  : parent_(parent), index_(index)
+
55  : parent_(parent), index_(index)
56  {
57  }
58 
59  Type &operator[](int col)
60  {
61  // The index is the y-position of the element in the matrix
-
62  return parent_->data_[index_ * Cols + col];
+
62  return parent_->data_[index_ * Cols + col];
63  }
64 
65  const Type &operator[](int col) const
66  {
-
67  return parent_->data_[index_ * Cols + col];
+
67  return parent_->data_[index_ * Cols + col];
68  }
69 };
70 
@@ -511,7 +511,6 @@ $(document).ready(function(){initNavTree('matrix_8h_source.html','');});
yage::operator==
bool operator==(const Matrix< M, N, T > &lhs, const Matrix< M, N, T > &rhs)
Definition: matrix.h:273
yage::Vector3::y
Type & y
Definition: matrix.h:356
yage::Matrix::end
std::vector< Type >::iterator end()
Iterator support for the end.
Definition: matrix.h:134
-
yage::details::Row::index_
int index_
Definition: matrix.h:51
yage::Vector3::x
Type & x
Definition: matrix.h:356
yage::Vector::operator[]
Type & operator[](int col)
Definition: matrix.h:306
yage::key::R
@@ -521,7 +520,6 @@ $(document).ready(function(){initNavTree('matrix_8h_source.html','');});
yage::Vector2::y
Type & y()
Definition: matrix.h:344
yage::key::Q
yage::details::Row::operator[]
Type & operator[](int col)
Definition: matrix.h:59
-
yage::details::Row::parent_
Matrix< Rows, Cols, Type > * parent_
Definition: matrix.h:50
yage::Matrix::getCol
Matrix< Rows, 1, Type > getCol(int col) const
Get a specific column in a column vector.
Definition: matrix.h:115
yage::details::Row::operator[]
const Type & operator[](int col) const
Definition: matrix.h:65
yage::Vector4::w
w(this->data_[3])
Definition: matrix.h:391
@@ -557,7 +555,7 @@ $(document).ready(function(){initNavTree('matrix_8h_source.html','');});