10 lines
239 B
C
10 lines
239 B
C
#ifndef GEOMETRY_H
|
|
#define GEOMETRY_H
|
|
|
|
#include "Triangle.h"
|
|
#include "cglm/struct/vec3.h"
|
|
|
|
void quad_create(vec3s center, vec3s forward, vec3s up, float size, uint8_t material_id, triangle_collection_t* collection);
|
|
|
|
#endif // GEOMETRY_H
|