@@ -81,8 +81,8 @@ const String LEFT_RING_INTERMEDIATE = 'leftRingIntermediate';
81
81
const String LEFT_RING_PROXIMAL = 'leftRingProximal' ;
82
82
const String LEFT_SHOULDER = 'leftShoulder' ;
83
83
const String LEFT_THUMB_DISTAL = 'leftThumbDistal' ;
84
- const String LEFT_THUMB_INTERMEDIATE = 'leftThumbIntermediate' ;
85
84
const String LEFT_THUMB_PROXIMAL = 'leftThumbProximal' ;
85
+ const String LEFT_THUMB_METACARPAL = 'leftThumbMetacarpal' ;
86
86
const String LEFT_TOES = 'leftToes' ;
87
87
const String LEFT_UPPER_ARM = 'leftUpperArm' ;
88
88
const String LEFT_UPPER_LEG = 'leftUpperLeg' ;
@@ -106,8 +106,8 @@ const String RIGHT_RING_INTERMEDIATE = 'rightRingIntermediate';
106
106
const String RIGHT_RING_PROXIMAL = 'rightRingProximal' ;
107
107
const String RIGHT_SHOULDER = 'rightShoulder' ;
108
108
const String RIGHT_THUMB_DISTAL = 'rightThumbDistal' ;
109
- const String RIGHT_THUMB_INTERMEDIATE = 'rightThumbIntermediate' ;
110
109
const String RIGHT_THUMB_PROXIMAL = 'rightThumbProximal' ;
110
+ const String RIGHT_THUMB_METACARPAL = 'rightThumbMetacarpal' ;
111
111
const String RIGHT_TOES = 'rightToes' ;
112
112
const String RIGHT_UPPER_ARM = 'rightUpperArm' ;
113
113
const String RIGHT_UPPER_LEG = 'rightUpperLeg' ;
@@ -138,7 +138,7 @@ const List<String> HUMAN_BONES_MEMBERS = <String>[
138
138
LEFT_RING_PROXIMAL ,
139
139
LEFT_SHOULDER ,
140
140
LEFT_THUMB_DISTAL ,
141
- LEFT_THUMB_INTERMEDIATE ,
141
+ LEFT_THUMB_METACARPAL ,
142
142
LEFT_THUMB_PROXIMAL ,
143
143
LEFT_TOES ,
144
144
LEFT_UPPER_ARM ,
@@ -163,7 +163,7 @@ const List<String> HUMAN_BONES_MEMBERS = <String>[
163
163
RIGHT_RING_PROXIMAL ,
164
164
RIGHT_SHOULDER ,
165
165
RIGHT_THUMB_DISTAL ,
166
- RIGHT_THUMB_INTERMEDIATE ,
166
+ RIGHT_THUMB_METACARPAL ,
167
167
RIGHT_THUMB_PROXIMAL ,
168
168
RIGHT_TOES ,
169
169
RIGHT_UPPER_ARM ,
@@ -196,8 +196,8 @@ class HumanBones {
196
196
final HumanBone leftRingProximal;
197
197
final HumanBone leftShoulder;
198
198
final HumanBone leftThumbDistal;
199
- final HumanBone leftThumbIntermediate;
200
199
final HumanBone leftThumbProximal;
200
+ final HumanBone leftThumbMetacarpal;
201
201
final HumanBone leftToes;
202
202
final HumanBone leftUpperArm;
203
203
final HumanBone leftUpperLeg;
@@ -221,8 +221,8 @@ class HumanBones {
221
221
final HumanBone rightRingProximal;
222
222
final HumanBone rightShoulder;
223
223
final HumanBone rightThumbDistal;
224
- final HumanBone rightThumbIntermediate;
225
224
final HumanBone rightThumbProximal;
225
+ final HumanBone rightThumbMetacarpal;
226
226
final HumanBone rightToes;
227
227
final HumanBone rightUpperArm;
228
228
final HumanBone rightUpperLeg;
@@ -253,8 +253,8 @@ class HumanBones {
253
253
this .leftRingProximal,
254
254
this .leftShoulder,
255
255
this .leftThumbDistal,
256
- this .leftThumbIntermediate,
257
256
this .leftThumbProximal,
257
+ this .leftThumbMetacarpal,
258
258
this .leftToes,
259
259
this .leftUpperArm,
260
260
this .leftUpperLeg,
@@ -278,8 +278,8 @@ class HumanBones {
278
278
this .rightRingProximal,
279
279
this .rightShoulder,
280
280
this .rightThumbDistal,
281
- this .rightThumbIntermediate,
282
281
this .rightThumbProximal,
282
+ this .rightThumbMetacarpal,
283
283
this .rightToes,
284
284
this .rightUpperArm,
285
285
this .rightUpperLeg,
@@ -332,10 +332,10 @@ class HumanBones {
332
332
getObjectFromInnerMap (map, LEFT_SHOULDER , context, HumanBone .fromMap),
333
333
getObjectFromInnerMap (
334
334
map, LEFT_THUMB_DISTAL , context, HumanBone .fromMap),
335
- getObjectFromInnerMap (
336
- map, LEFT_THUMB_INTERMEDIATE , context, HumanBone .fromMap),
337
335
getObjectFromInnerMap (
338
336
map, LEFT_THUMB_PROXIMAL , context, HumanBone .fromMap),
337
+ getObjectFromInnerMap (
338
+ map, LEFT_THUMB_METACARPAL , context, HumanBone .fromMap),
339
339
getObjectFromInnerMap (map, LEFT_TOES , context, HumanBone .fromMap),
340
340
getObjectFromInnerMap (map, LEFT_UPPER_ARM , context, HumanBone .fromMap,
341
341
req: true ),
@@ -363,8 +363,8 @@ class HumanBones {
363
363
getObjectFromInnerMap (map, RIGHT_RING_PROXIMAL , context, HumanBone .fromMap),
364
364
getObjectFromInnerMap (map, RIGHT_SHOULDER , context, HumanBone .fromMap),
365
365
getObjectFromInnerMap (map, RIGHT_THUMB_DISTAL , context, HumanBone .fromMap),
366
- getObjectFromInnerMap (map, RIGHT_THUMB_INTERMEDIATE , context, HumanBone .fromMap),
367
366
getObjectFromInnerMap (map, RIGHT_THUMB_PROXIMAL , context, HumanBone .fromMap),
367
+ getObjectFromInnerMap (map, RIGHT_THUMB_METACARPAL , context, HumanBone .fromMap),
368
368
getObjectFromInnerMap (map, RIGHT_TOES , context, HumanBone .fromMap),
369
369
getObjectFromInnerMap (map, RIGHT_UPPER_ARM , context, HumanBone .fromMap, req: true ),
370
370
getObjectFromInnerMap (map, RIGHT_UPPER_LEG , context, HumanBone .fromMap, req: true ),
@@ -411,8 +411,8 @@ class HumanBones {
411
411
linkBone (LEFT_RING_PROXIMAL , leftRingProximal);
412
412
linkBone (LEFT_SHOULDER , leftShoulder);
413
413
linkBone (LEFT_THUMB_DISTAL , leftThumbDistal);
414
- linkBone (LEFT_THUMB_INTERMEDIATE , leftThumbIntermediate);
415
414
linkBone (LEFT_THUMB_PROXIMAL , leftThumbProximal);
415
+ linkBone (LEFT_THUMB_METACARPAL , leftThumbMetacarpal);
416
416
linkBone (LEFT_TOES , leftToes);
417
417
linkBone (LEFT_UPPER_ARM , leftUpperArm);
418
418
linkBone (LEFT_UPPER_LEG , leftUpperLeg);
@@ -436,8 +436,8 @@ class HumanBones {
436
436
linkBone (RIGHT_RING_PROXIMAL , rightRingProximal);
437
437
linkBone (RIGHT_SHOULDER , rightShoulder);
438
438
linkBone (RIGHT_THUMB_DISTAL , rightThumbDistal);
439
- linkBone (RIGHT_THUMB_INTERMEDIATE , rightThumbIntermediate);
440
439
linkBone (RIGHT_THUMB_PROXIMAL , rightThumbProximal);
440
+ linkBone (RIGHT_THUMB_METACARPAL , rightThumbMetacarpal);
441
441
linkBone (RIGHT_TOES , rightToes);
442
442
linkBone (RIGHT_UPPER_ARM , rightUpperArm);
443
443
linkBone (RIGHT_UPPER_LEG , rightUpperLeg);
0 commit comments