From 3a5a0e7b42d34baa238895f9e4d86cfd902ace7d Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Sat, 23 Dec 2017 00:51:44 +0000 Subject: [Travis] Rebuilding documentation --- classyage_1_1Vector.html | 357 ----------------------------------------------- 1 file changed, 357 deletions(-) delete mode 100644 classyage_1_1Vector.html (limited to 'classyage_1_1Vector.html') diff --git a/classyage_1_1Vector.html b/classyage_1_1Vector.html deleted file mode 100644 index 3f50341c..00000000 --- a/classyage_1_1Vector.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - -YAGE: yage::Vector< Rows, Type > Class Template Reference - - - - - - - - - - - - - -
-
- - - - - - -
-
YAGE -  v0.1.3 -
-
Yet Another Game Engine
-
-
- - - - - -
-
- -
-
-
- -
- -
- All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
- - -
- -
- -
- -
-
yage::Vector< Rows, Type > Class Template Reference
-
-
- -

#include <matrix.h>

-
-Inheritance diagram for yage::Vector< Rows, Type >:
-
-
- - -yage::Matrix< Rows, 1, Type > - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Vector ()
 
 Vector (const Matrix< Rows, 1, Type > &other)
 
 Vector (const std::vector< Type > &data)
 
Type & operator[] (int col)
 
const Type & operator[] (int col) const
 
std::string toString () const override
 Prints out the matrix, but can also be implemented by other classes to print data differently. More...
 
- Public Member Functions inherited from yage::Matrix< Rows, 1, Type >
 Matrix ()
 Initializes the size of the data_ vector. More...
 
 Matrix (const std::vector< Type > &data)
 
int rowSize () const
 Returns the row size of the Matrix. More...
 
int colSize () const
 Returns the column size of the Matrix. More...
 
Matrix< 1, Cols, Type > getRow (int row) const
 Return the row specified row as a Matrix with only one row. More...
 
Matrix< Rows, 1, Type > getCol (int col) const
 Get a specific column in a column vector. More...
 
std::vector< Type >::iterator begin ()
 Iterator support for the start. More...
 
std::vector< Type >::iterator end ()
 Iterator support for the end. More...
 
details::Row< Rows, Cols, Type > operator[] (int row)
 
details::Row< Rows, Cols, Type > operator[] (int row) const
 
Matrix< Rows, Cols, Type > & operator+= (const Matrix< Rows, Cols, Type > &rhs)
 
Matrix< Rows, Cols, Type > & operator-= (const Matrix< Rows, Cols, Type > &rhs)
 
- - - - - -

-Additional Inherited Members

- Protected Attributes inherited from yage::Matrix< Rows, 1, Type >
std::vector< Type > data_
 Vector containing the data of the matrix. More...
 
-

Constructor & Destructor Documentation

- -
-
-
-template<int Rows = 2, class Type = double>
- - - - - -
- - - - - - - -
yage::Vector< Rows, Type >::Vector ()
-
-inline
-
- -
-
- -
-
-
-template<int Rows = 2, class Type = double>
- - - - - -
- - - - - - - - -
yage::Vector< Rows, Type >::Vector (const Matrix< Rows, 1, Type > & other)
-
-inline
-
- -
-
- -
-
-
-template<int Rows = 2, class Type = double>
- - - - - -
- - - - - - - - -
yage::Vector< Rows, Type >::Vector (const std::vector< Type > & data)
-
-inline
-
- -
-
-

Member Function Documentation

- -
-
-
-template<int Rows = 2, class Type = double>
- - - - - -
- - - - - - - - -
Type& yage::Vector< Rows, Type >::operator[] (int col)
-
-inline
-
- -
-
- -
-
-
-template<int Rows = 2, class Type = double>
- - - - - -
- - - - - - - - -
const Type& yage::Vector< Rows, Type >::operator[] (int col) const
-
-inline
-
- -
-
- -
-
-
-template<int Rows = 2, class Type = double>
- - - - - -
- - - - - - - -
std::string yage::Vector< Rows, Type >::toString () const
-
-inlineoverridevirtual
-
-
Bug:
When printing certain matrices, it omits a row or column. Still need to determine under which conditions.
- -

Reimplemented from yage::Matrix< Rows, 1, Type >.

- -
-
-
The documentation for this class was generated from the following file: -
-
- - - - -- cgit