Initial refactoring of vector and matrix classes

This commit is contained in:
Klaus Basan
2013-04-18 01:04:21 +02:00
parent 5f678dfe28
commit 5bf308c54b
34 changed files with 2004 additions and 40 deletions

View File

@@ -0,0 +1,29 @@
#ifndef BLACKMISCTEST_SAMPLESVECTORMATRIX_H
#define BLACKMISCTEST_SAMPLESVECTORMATRIX_H
#include "blackmisc/mathvector3d.h"
#include "blackmisc/mathmatrix3x3.h"
namespace BlackMiscTest
{
/*!
* \brief Samples for vector / matrix
*/
class CSamplesVectorMatrix
{
public:
/*!
* \brief Run the samples
*/
static int samples();
private:
/*!
* \brief Avoid init
*/
CSamplesVectorMatrix();
};
} // namespace
#endif