From 3d96965ecd28b9037a83c4b22f65fcf502dce336 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 29 Jul 2017 10:00:20 +0100 Subject: Updating docs --- classyage_1_1Matrix.html | 100 ++++++++++++++++++++++++++--------------------- 1 file changed, 56 insertions(+), 44 deletions(-) (limited to 'classyage_1_1Matrix.html') diff --git a/classyage_1_1Matrix.html b/classyage_1_1Matrix.html index 60572cad..0368df72 100644 --- a/classyage_1_1Matrix.html +++ b/classyage_1_1Matrix.html @@ -22,6 +22,7 @@
YAGE +  0.02
Yet Another Game Engine
@@ -66,83 +67,94 @@ $(function() {
Public Member Functions | Protected Attributes | -Friends | List of all members
yage::Matrix< Rows, Cols, Type > Class Template Reference
-

Base matrix class. +

Base Matrix class used by other similar classes. More...

#include <matrix.hpp>

+ + + +int  + +int  + - + + - - - - - - - - - - - - - - - - - -

Public Member Functions

Matrix ()
 Initializes the size of the data_ vector.
 
-int rowSize () const
rowSize () const
 Returns the row size of the Matrix.
 
-int colSize () const
colSize () const
 Returns the column size of the Matrixxs.
 
-Matrix< 1, Cols, Type > getRow (int row) const
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
 
-std::vector< Type >::iterator begin ()
 
-std::vector< Type >::iterator end ()
 
-virtual std::string toString () const
 
-detail::Row< Rows, Cols, Type > operator[] (int row)
 
-detail::Row< Rows, Cols, Type > operator[] (int row) const
 
-Matrix< Rows, Cols, Type > & operator= (const Matrix< Rows, Cols, Type > &other)
 
-Matrix< Rows, Cols, Type > & operator+= (const Matrix< Rows, Cols, Type > &rhs)
 
-Matrix< Rows, Cols, Type > & operator-= (const Matrix< Rows, Cols, Type > &rhs)
 
+std::vector< Type >  + -

Protected Attributes

-std::vector< Type > data_
data_
 Vector containing the data of the matrix.
 
- - -

-Friends

-class detail::Row< Rows, Cols, Type >
 

Detailed Description

template<int Rows = 4, int Cols = 4, class Type = double>
class yage::Matrix< Rows, Cols, Type >

-

Base matrix class.

-

Matrix class

+

Base Matrix class used by other similar classes.

+

Matrix class

This is the base matrix class that can be used by all the other matrix like data structures.

-

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

Member Function Documentation

+ +

◆ getRow()

+ +
+
+
+template<int Rows = 4, int Cols = 4, class Type = double>
+ + + + + +
+ + + + + + + + +
Matrix<1, Cols, Type> yage::Matrix< Rows, Cols, Type >::getRow (int row) const
+
+inline
+
+ +

Return the row specified row as a Matrix with only one row.

+
Parameters
+ + +
[in]rowRow number to be returned
+
+
+

Returns the row that is specified by the row variables.

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