-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiklib_dh.h
More file actions
59 lines (52 loc) · 1.32 KB
/
iklib_dh.h
File metadata and controls
59 lines (52 loc) · 1.32 KB
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
/*
* Copyright (c) 2022 Yosep Kim.
* See LICENSE for more information
* https://github.com/ypskm/iklib
*/
// You can set different DH parameters
// by changing the literals below
#ifndef IKLIB_DH_H
#define IKLIB_DH_H
#ifndef PI
#define PI 3.14159265358979
#endif
// "Link Length"
// displacement between zi and zi+1
// along the direction of xi basis
#define DH_A1 0.35
#define DH_A2 1.25
#define DH_A3 -0.054
#define DH_A4 0
#define DH_A5 0
#define DH_A6 0
// "Twist Angle"
// angular displacement between zi and zi+1
// about the right-hand direction of xi basis
#define DH_ALPHA1 -PI / 2
#define DH_ALPHA2 0
#define DH_ALPHA3 -PI / 2
#define DH_ALPHA4 PI / 2
#define DH_ALPHA5 -PI / 2
#define DH_ALPHA6 0
// "Link Offset"
// displacement between xi-1 and xi
// along the direction of zi basis
#define DH_D1 0.75
#define DH_D2 0
#define DH_D3 0
#define DH_D4 1.5
#define DH_D5 0
#define DH_D6 0
#define DH_DG 0.303
// "Joint Angle"
// angular displacement between xi-1 and xi
// about the right-hand direction of zi basis
// since it can be linear function,
// It can be any Function of free variable.
#define DH_THETA1(Q) ((Q))
#define DH_THETA2(Q) ((Q)-PI / 2)
#define DH_THETA3(Q) ((Q))
#define DH_THETA4(Q) ((Q))
#define DH_THETA5(Q) ((Q))
#define DH_THETA6(Q) ((Q))
#endif