27 lines
601 B
C
27 lines
601 B
C
#ifndef MODEL_H
|
|
#define MODEL_H
|
|
|
|
typedef struct _model {
|
|
GLfloat *object;
|
|
GLfloat *colors;
|
|
GLfloat **transformations;
|
|
size_t bufsize;
|
|
size_t transformation_count;
|
|
size_t transformation_size;
|
|
} Model;
|
|
|
|
typedef struct _model_registry {
|
|
Model **models;
|
|
size_t model_count;
|
|
size_t size;
|
|
} ModelRegistry;
|
|
|
|
Model *model_load(const char *);
|
|
ModelRegistry* modelRegistry_new(void);
|
|
int modelRegistry_register(ModelRegistry *, Model *);
|
|
void modelRegistry_free(ModelRegistry *);
|
|
GLfloat * model_applyTransformations(Model *);
|
|
void model_colorFromPosition(Model *);
|
|
|
|
#endif
|
|
|