Fixed some issue with scalar multiplications (explicit) and continued with UNIT tests

This commit is contained in:
Klaus Basan
2013-04-21 01:13:23 +02:00
parent f4affe55ef
commit bd53371de4
16 changed files with 255 additions and 91 deletions

View File

@@ -25,18 +25,18 @@ public:
*/
CMatrix1x3() : CMatrixBase() {}
/*!
* \brief init with value
* \param fillValue
*/
CMatrix1x3(double fillValue) : CMatrixBase(fillValue) {}
/*!
* \brief Copy constructor
* \param other
*/
CMatrix1x3(const CMatrix1x3 &otherMatrix) : CMatrixBase(otherMatrix) {}
/*!
* \brief Init by fill value
* \param fillValue
*/
explicit CMatrix1x3(double fillValue) : CMatrixBase(fillValue) {}
/*!
* \brief CMatrix 3x1
* \param c1