2008-02-09 13:43:23 +01:00
|
|
|
#ifndef __ROTATIONSMATRIX_H
|
|
|
|
#define __ROTATIONSMATRIX_H
|
|
|
|
|
|
|
|
#include <cmath>
|
2008-06-17 02:46:39 +02:00
|
|
|
#include "punkt3d.h"
|
2008-02-09 13:43:23 +01:00
|
|
|
#include "emath.h"
|
|
|
|
#include "matrix.h"
|
|
|
|
|
2008-08-10 17:14:54 +02:00
|
|
|
namespace segl {
|
|
|
|
|
2008-02-09 13:43:23 +01:00
|
|
|
enum axis { x_axis=0, y_axis, z_axis };
|
|
|
|
|
|
|
|
class Rotationsmatrix : public Matrix {
|
|
|
|
private:
|
|
|
|
float deg;
|
|
|
|
Punkt3D rotvec;
|
|
|
|
|
|
|
|
void initRot();
|
|
|
|
public:
|
|
|
|
Rotationsmatrix();
|
|
|
|
Rotationsmatrix(axis, float);
|
|
|
|
Rotationsmatrix(Punkt3D, float);
|
|
|
|
~Rotationsmatrix();
|
|
|
|
|
|
|
|
void set(float);
|
|
|
|
void set(axis, float);
|
|
|
|
void set(Punkt3D, float);
|
|
|
|
|
|
|
|
Punkt3D operator*(const Punkt3D&);
|
|
|
|
Rotationsmatrix operator*(const Rotationsmatrix&);
|
|
|
|
};
|
|
|
|
|
2008-08-10 17:14:54 +02:00
|
|
|
} // namespace segl
|
|
|
|
|
2008-02-09 13:43:23 +01:00
|
|
|
#endif
|