Skip to content
aspadm edited this page Sep 24, 2018 · 1 revision

На русском

Format: LNK

Description

Bones hierarchy

Structure

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).

Clone this wiki locally