blob: 80b7475970f4491edc0ceccb5f3388a8d157827e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
struct T6DOF {
public:
double axes[6];
T6DOF() : axes {0,0,0, 0,0,0 } {}
};
T6DOF operator-(const T6DOF& A, const T6DOF& B); // get new pose with respect to reference pose B
T6DOF operator+(const T6DOF& A, const T6DOF& B); // get new pose with respect to reference pose B^-1
|