libanim

view src/dynarr.h @ 5:2cf7284d2bbb

added anm_get_node_matrix and anm_get_node_inv_matrix functions to calculate node matrices without taking the hierarchy into account...
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 27 Feb 2013 21:38:33 +0200
parents
children 60a46a122b0f
line source
1 #ifndef DYNARR_H_
2 #define DYNARR_H_
4 void *dynarr_alloc(int elem, int szelem);
5 void dynarr_free(void *da);
6 void *dynarr_resize(void *da, int elem);
8 int dynarr_empty(void *da);
9 int dynarr_size(void *da);
11 /* stack semantics */
12 void *dynarr_push(void *da, void *item);
13 void *dynarr_pop(void *da);
16 #endif /* DYNARR_H_ */