-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMannequin.any
More file actions
172 lines (135 loc) · 5.03 KB
/
Mannequin.any
File metadata and controls
172 lines (135 loc) · 5.03 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
Main.HumanModel.Mannequin = {
Posture = {
//This controls the position of the pelvi wrt. to the global reference frame
PelvisPosX=0.046;
PelvisPosY=1.16;
PelvisPosZ=0;
//This controls the rotation of the pelvis wrt. to the global reference frame
PelvisRotX=0;
PelvisRotY=0;
PelvisRotZ=0;
// These variables control the rotation of the thorax wrt the
// pelvis
PelvisThoraxExtension=0;
PelvisThoraxLateralBending=0;
PelvisThoraxRotation=0;
NeckExtension=0;
NeckLateralBending=0;
NeckRotation=0;
Right = {
//Arm
SternoClavicularProtraction=-23; //This value is not used for initial position
SternoClavicularElevation=11.5; //This value is not used for initial position
GlenohumeralFlexion =-0;
GlenohumeralAbduction = 10;
GlenohumeralExternalRotation = 0;
ElbowFlexion = 90;
ElbowPronation = 10.0;
WristFlexion =0;
WristAbduction =0;
HipFlexion = 0.0;
HipAbduction = 5.0;
HipExternalRotation = 0.0;
KneeFlexion = 0.0;
AnklePlantarFlexion =0.0;
SubTalarEversion =0.0;
};
Left = {
//all values are set to be equal to the right side values
//feel free to change this!
//Arm
SternoClavicularProtraction=.Right.SternoClavicularProtraction;
SternoClavicularElevation=.Right.SternoClavicularElevation;
GlenohumeralFlexion = .Right.GlenohumeralFlexion ;
GlenohumeralAbduction =.Right.GlenohumeralAbduction ;
GlenohumeralExternalRotation =.Right.GlenohumeralExternalRotation ;
ElbowFlexion = .Right.ElbowFlexion;
ElbowPronation = .Right.ElbowPronation;
WristFlexion =.Right.WristFlexion;
WristAbduction =.Right.WristAbduction;
//Leg
HipFlexion =.Right.HipFlexion;
HipAbduction =.Right.HipAbduction;
HipExternalRotation = .Right.HipExternalRotation;
KneeFlexion = .Right.KneeFlexion;
AnklePlantarFlexion = .Right.AnklePlantarFlexion ;
SubTalarEversion =.Right.SubTalarEversion;
};
};
PostureVel={
//This controls the position of the pelvi wrt. to the global reference frame
PelvisPosX=0;
PelvisPosY=0;
PelvisPosZ=0;
//This controls the rotation of the pelvis wrt. to the global reference frame
PelvisRotX=0;
PelvisRotY=0;
PelvisRotZ=0;
// These variables control the rotation of the thorax wrt the
// pelvis
PelvisThoraxExtension=0;
PelvisThoraxLateralBending=0;
PelvisThoraxRotation=0;
NeckExtension=0;
NeckLateralBending=0;
NeckRotation=0;
Right = {
//Arm
SternoClavicularProtraction=0; //This value is not used for initial position
SternoClavicularElevation=0; //This value is not used for initial position
GlenohumeralFlexion =0;
GlenohumeralAbduction = 0;
GlenohumeralExternalRotation = 0;
ElbowFlexion = 0.0;
ElbowPronation = 0.0;
WristFlexion =0;
WristAbduction =0;
HipFlexion = 0.0;
HipAbduction = 0.0;
HipExternalRotation = 0.0;
KneeFlexion = 0.0;
AnklePlantarFlexion =0.0;
SubTalarEversion =0.0;
};
Left = {
//all values are set to be equal to the right side values
//feel free to change this!
//Arm
SternoClavicularProtraction=.Right.SternoClavicularProtraction;
SternoClavicularElevation=.Right.SternoClavicularElevation;
GlenohumeralFlexion = .Right.GlenohumeralFlexion ;
GlenohumeralAbduction =.Right.GlenohumeralAbduction ;
GlenohumeralExternalRotation =.Right.GlenohumeralExternalRotation ;
ElbowFlexion = .Right.ElbowFlexion;
ElbowPronation = .Right.ElbowPronation;
WristFlexion =.Right.WristFlexion;
WristAbduction =.Right.WristAbduction;
//Leg
HipFlexion =.Right.HipFlexion;
HipAbduction =.Right.HipAbduction;
HipExternalRotation = .Right.HipExternalRotation;
KneeFlexion = .Right.KneeFlexion;
AnklePlantarFlexion = .Right.AnklePlantarFlexion ;
SubTalarEversion =.Right.SubTalarEversion;
};
};
AnyFolder Load = {
AnyVec3 TopVertebra = {0.000, 0.000, 0.000};
AnyFolder Right = {
AnyVec3 Shoulder = {0.000, 0.000, 0.000};
AnyVec3 Elbow = {0.000, 0.000, 0.000};
AnyVec3 Hand = {0.000, 0.000, 0.000};
AnyVec3 Hip = {0.000, 0.000, 0.000};
AnyVec3 Knee = {0.000, 0.000, 0.000};
AnyVec3 Ankle = {0.000, 0.000, 0.000};
};
AnyFolder Left = {
AnyVec3 Shoulder = {0.000, 0.000, 0.000};
AnyVec3 Elbow = {0.000, 0.000, 0.000};
AnyVec3 Hand = {0.000, 0.000, 0.000};
AnyVec3 Hip = {0.000, 0.000, 0.000};
AnyVec3 Knee = {0.000, 0.000, 0.000};
AnyVec3 Ankle = {0.000, 0.000, 0.000};
};
}; // Loads
};