reading nested yaml sequences for vertices

This commit is contained in:
Luka Jankovic 2025-07-25 01:48:23 +02:00
parent 03da03d679
commit e694c32496
3 changed files with 25 additions and 9 deletions

View file

@ -16,7 +16,7 @@ void kubo_file_parse(char *file_name) {
printf("%s:\n", n->name);
for (unsigned i = 0; i < n->data_count; i++) {
printf(" - %i\n", n->data[i]);
printf(" - %f:%f\n", n->data[i][0], n->data[i][1]);
}
err = cyaml_free(&config, &top_schema, n, 0);