tinygi

view src/object.h @ 1:bc64090fe3d1

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 20 Jul 2015 04:38:53 +0300
parents 16fdca2a1ef5
children 72752a1b3dbe
line source
1 #ifndef TGI_OBJECT_H_
2 #define TGI_OBJECT_H_
4 #include "tinygi.h"
5 #include "vmath/vmath.h"
7 struct tgi_object {
8 char *name;
9 struct tgi_shape *shape;
10 struct tgi_material *mtl;
11 mat4_t xform, inv_xform;
13 struct tgi_object *next; /* for linking it into various lists */
14 };
16 #endif /* TGI_OBJECT_H_ */