summaryrefslogtreecommitdiffhomepage
path: root/facetracknoir/tracker_types.h
blob: 043c042016a72276bb84feb1aab782dfd55ffb62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __TRACKER_TYPES_H__
#define __TRACKER_TYPES_H__

#include "ftnoir_tracker_base/ftnoir_tracker_types.h"

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

#endif //__TRACKER_TYPES_H__