-
Notifications
You must be signed in to change notification settings - Fork 2
lnk
aspadm edited this page Sep 24, 2018
·
1 revision
Bones hierarchy
typedef struct
{
uint len_name;
char name[len_name];
uint len_parent_name;
char parent_name[len_parent_name];
} bone;
uint bones_count;
bone bones[bones_count];
Root node's parent_name is empty string (len_parent_name = 0).
Parent bone defined early, than children (safely for linear reading).