13CAD
CAD-like software based on C++, Qt and VTK.
 All Classes Files Functions Variables Friends
matrix.h
Go to the documentation of this file.
1 
8 #ifndef MATRIX_H
9 #define MATRIX_H
10 
11 #include "vector3d.h"
12 #include <vector>
13 
17 class Matrix3x3
18 {
19  protected:
23  std::vector<float> values;
24 
25  public:
26  Matrix3x3();
27  ~Matrix3x3();
28 
32  void setDiagonal(Vector3D &v);
33 };
34 
35 #endif /* MATRIX_H */
Definition: matrix.h:17
void setDiagonal(Vector3D &v)
Definition: matrix.cpp:12
Header file for the Vector3D class.
Definition: vector3d.h:17
std::vector< float > values
Definition: matrix.h:23