趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
homogeneous_transform.h
Go to the documentation of this file.
1 #ifndef HRK_HOMOGENEOUS_TRANSFORMATION_H
2 #define HRK_HOMOGENEOUS_TRANSFORMATION_H
3 
9 #include "PositionF.h"
10 
11 
12 namespace hrk
13 {
14  PositionF homogeneous_transform(const PositionF& target,
15  const PositionF& offset);
16 
17  PositionF homogeneous_transform_invert(const PositionF& target,
18  const PositionF& offset);
19 }
20 
21 #endif