Had to withdraw 3Vector3D, since they store values internally as float (idiotic design). Hence qreal will be dropped. Started with Unit tests.

This commit is contained in:
Klaus Basan
2013-04-20 17:46:46 +02:00
parent 7b0468d300
commit f4affe55ef
28 changed files with 446 additions and 183 deletions

View File

@@ -29,7 +29,7 @@ public:
* \brief init with value
* \param fillValue
*/
CMatrix1x3(qreal fillValue) : CMatrixBase(fillValue) {}
CMatrix1x3(double fillValue) : CMatrixBase(fillValue) {}
/*!
* \brief Copy constructor
@@ -43,7 +43,7 @@ public:
* \param c2
* \param c3
*/
CMatrix1x3(qreal c1, qreal c2, qreal c3) : CMatrixBase()
CMatrix1x3(double c1, double c2, double c3) : CMatrixBase()
{
this->m_matrix(0, 0) = c1;
this->m_matrix(0, 1) = c2;