19 lines
244 B
C++
19 lines
244 B
C++
//
|
|
// Created by nb on 07.07.24.
|
|
//
|
|
|
|
#ifndef VOLSVECS_MATRIX3_H
|
|
#define VOLSVECS_MATRIX3_H
|
|
|
|
#include "LinAlg/matrixmxn.h"
|
|
|
|
namespace LinAlg{
|
|
class Matrix3: public Matrix<3,3>{
|
|
public:
|
|
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif //VOLSVECS_MATRIX3_H
|