BALL 1.5.0
transformationEvent6D.h
Go to the documentation of this file.
1#ifndef TRANSFORMATION6DEVENT_H
2#define TRANSFORMATION6DEVENT_H
3
4#include <QtCore/QEvent>
5
8
9namespace BALL
10{
11 namespace VIEW
12 {
14 {
15 public:
16 TransformationEvent6D(InputDeviceDriver* dev, double x, double y, double z,
17 double a, double b, double c);
18
19 const Vector3& getTranslation() { return translation_; }
20 const Vector3& getRotation() { return rotation_; }
21 private:
22 Vector3 translation_;
23 Vector3 rotation_;
24 };
25 }
26}
27
28#endif //TRANSFORMATION6DEVENT_H
29
Definition: constants.h:13
BALL_EXTERN_VARIABLE const double c
Definition: constants.h:149
TransformationEvent6D(InputDeviceDriver *dev, double x, double y, double z, double a, double b, double c)