refs #345 Style and doxygen.

This commit is contained in:
Mathew Sutcliffe
2014-10-28 19:46:52 +00:00
parent 8f5315b846
commit 798b198d4e
78 changed files with 268 additions and 531 deletions

View File

@@ -29,7 +29,7 @@ namespace BlackMisc
public:
//! Constructor
CMatrix3x1() : CMatrixBase() {}
CMatrix3x1() = default;
//! Constructor
CMatrix3x1(double r1, double r2, double r3) : CMatrixBase()
@@ -39,9 +39,6 @@ namespace BlackMisc
this->m_matrix(2, 0) = r3;
}
//! Copy constructor
CMatrix3x1(const CMatrix3x1 &other) : CMatrixBase(other) {}
//! Init by fill value
explicit CMatrix3x1(double fillValue) : CMatrixBase(fillValue) {}
@@ -59,8 +56,9 @@ namespace BlackMisc
this->m_matrix(2, 0) = vector.k();
}
};
} // namespace
} // namespace
}
}
Q_DECLARE_METATYPE(BlackMisc::Math::CMatrix3x1)