Extended math lib

This commit is contained in:
Lorenz Meier 2013-07-13 18:40:48 +02:00
parent 56e74ad19e
commit 5adfdfa8f9
2 changed files with 10 additions and 0 deletions

View File

@ -135,6 +135,11 @@ Dcm::Dcm(const Dcm &right) :
{
}
Dcm::Dcm(const Matrix &right) :
Matrix(right)
{
}
Dcm::~Dcm()
{
}

View File

@ -96,6 +96,11 @@ public:
*/
Dcm(const Dcm &right);
/**
* copy ctor (deep)
*/
Dcm(const Matrix &right);
/**
* dtor
*/