mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-28 06:20:25 +08:00
18 lines
381 B
C++
18 lines
381 B
C++
#ifndef __CROTATIONMATRIX
|
|
#define __CROTATIONMATRIX
|
|
|
|
#include "cOrthonormalMatrix.h"
|
|
|
|
class cRotationMatrix : public cOrthonormalMatrix
|
|
{
|
|
public:
|
|
const cOrthonormalMatrix& Matrix(void) const;
|
|
cRotationMatrix(const size_t size, const int i, const int j, const double phi);
|
|
virtual ~cRotationMatrix(void){};
|
|
private:
|
|
cOrthonormalMatrix _data;
|
|
|
|
};
|
|
|
|
#endif // __CROTATIONMATRIX
|