QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RTranslation.h
Go to the documentation of this file.
1 #ifndef RTRANSLATION_H
2 #define RTRANSLATION_H
3 
4 #include "RTransformation.h"
5 #include "RVector.h"
6 
13 class RTranslation : public RTransformation {
14 public:
15  RTranslation(const RVector& offset) : offset(offset) {}
16 
18 };
19 
21 
22 #endif