Katzlab dd76ab1d12 Added PTL2 Scripts
These are PTL2 files from Auden 2/9
2023-02-14 11:20:52 -05:00

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