20 lines
267 B
C
20 lines
267 B
C
|
//
|
||
|
// Created by nb on 07.07.24.
|
||
|
//
|
||
|
|
||
|
#ifndef VOLSVECS_MATRIX3_H
|
||
|
#define VOLSVECS_MATRIX3_H
|
||
|
|
||
|
namespace LinAlg{
|
||
|
class Matrix3{
|
||
|
public:
|
||
|
|
||
|
private:
|
||
|
short static getIndex(int x, int y);
|
||
|
|
||
|
double elements[9];
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //VOLSVECS_MATRIX3_H
|