From 1a8ec165031af3b860028ef1b360acc8e7baf9e6 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Thu, 21 Sep 2017 23:32:46 +0000 Subject: Rebuilding documentation --- classyage_1_1Vector2.html | 430 ---------------------------------------------- 1 file changed, 430 deletions(-) delete mode 100644 classyage_1_1Vector2.html (limited to 'classyage_1_1Vector2.html') diff --git a/classyage_1_1Vector2.html b/classyage_1_1Vector2.html deleted file mode 100644 index f8a27708..00000000 --- a/classyage_1_1Vector2.html +++ /dev/null @@ -1,430 +0,0 @@ - - - - - - - -YAGE: yage::Vector2< Type > Class Template Reference - - - - - - - - - - - - - - -
-
- - - - - - -
-
YAGE -  v0.1.1 -
-
Yet Another Game Engine
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
yage::Vector2< Type > Class Template Reference
-
-
- -

2D Vector class. - More...

- -

#include <matrix.h>

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

-Public Member Functions

 Vector2 ()
 
 Vector2 (const std::vector< Type > &data)
 
 Vector2 (Type x, Type y)
 
 Vector2 (const Matrix< 2, 1, Type > &other)
 
Type & x ()
 
const Type & x () const
 
Type & y ()
 
const Type & y () const
 
- Public Member Functions inherited from yage::Vector< 2, Type >
 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...
 
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 > &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...
 
-

Detailed Description

-

template<class Type = double>
-class yage::Vector2< Type >

- -

Two dimensional vector class.

-

Constructor & Destructor Documentation

- -

◆ Vector2() [1/4]

- -
-
-
-template<class Type = double>
- - - - - -
- - - - - - - -
yage::Vector2< Type >::Vector2 ()
-
-inline
-
- -
-
- -

◆ Vector2() [2/4]

- -
-
-
-template<class Type = double>
- - - - - -
- - - - - - - - -
yage::Vector2< Type >::Vector2 (const std::vector< Type > & data)
-
-inline
-
- -
-
- -

◆ Vector2() [3/4]

- -
-
-
-template<class Type = double>
- - - - - -
- - - - - - - - - - - - - - - - - - -
yage::Vector2< Type >::Vector2 (Type x,
Type y 
)
-
-inline
-
- -
-
- -

◆ Vector2() [4/4]

- -
-
-
-template<class Type = double>
- - - - - -
- - - - - - - - -
yage::Vector2< Type >::Vector2 (const Matrix< 2, 1, Type > & other)
-
-inline
-
- -
-
-

Member Function Documentation

- -

◆ x() [1/2]

- -
-
-
-template<class Type = double>
- - - - - -
- - - - - - - -
Type& yage::Vector2< Type >::x ()
-
-inline
-
- -
-
- -

◆ x() [2/2]

- -
-
-
-template<class Type = double>
- - - - - -
- - - - - - - -
const Type& yage::Vector2< Type >::x () const
-
-inline
-
- -
-
- -

◆ y() [1/2]

- -
-
-
-template<class Type = double>
- - - - - -
- - - - - - - -
Type& yage::Vector2< Type >::y ()
-
-inline
-
- -
-
- -

◆ y() [2/2]

- -
-
-
-template<class Type = double>
- - - - - -
- - - - - - - -
const Type& yage::Vector2< Type >::y () const
-
-inline
-
- -
-
-
The documentation for this class was generated from the following file: -
-
- - - - -- cgit