-
Notifications
You must be signed in to change notification settings - Fork 494
/
Copy pathstructs.h
62 lines (51 loc) · 1.51 KB
/
structs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* \file structs.h
* \author Jesse Haviland
*
*/
/* structs.h */
#ifndef STRUCTS_H
#define STRUCTS_H
// #ifdef __cplusplus
#include <Eigen/Dense>
// #endif /* __cplusplus */
#include "linalg.h"
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
typedef struct ET ET;
typedef struct ETS ETS;
struct ETS
{
/**********************************************************
*************** kinematic parameters *********************
**********************************************************/
ET **ets;
int n;
int m;
// While this information is stored in the ET's
// Its much faster for IK to cache it here
double *qlim_l;
double *qlim_h;
double *q_range2;
};
struct ET
{
int isstaticsym; /* this ET is static and has a symbolic value */
int isjoint;
int isflip;
int jindex;
int axis;
double *T; /* link static transform */
double *qlim; /* joint limits */
void (*op)(double *data, double eta);
// #ifdef __cplusplus
// Eigen::Map<Eigen::Matrix<double, 4, 4, Eigen::RowMajor>> Tm;
MapMatrix4dc Tm;
// #endif /* __cplusplus */
};
#ifdef __cplusplus
} /* extern "C" */
#endif /* __cplusplus */
#endif