object.h corrections

This commit is contained in:
Milang 2019-10-26 15:08:45 +02:00
parent 2c8e7cb263
commit 1f6ba41298
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ typedef struct
void fe_object_init(fe_object * object); // Create the object on the zone you allocated
void fe_object_set_points(fe_object * object, fe_ivertex * points, uint32_t n, bool copy);
void fe_object_set_points(fe_object * object, fe_vertex * points, uint32_t n, bool copy);
void fe_object_set_faces(fe_object * object, fe_triangle * faces, uint32_t n, bool copy);
@ -34,6 +34,6 @@ void fe_object_delete(fe_object * object);
void fe_object_display(fe_object * object);
fe_ipoint* fe_object_get_vertex(const fe_object * object, const int n);
fe_vertex* fe_object_get_vertex(const fe_object * object, const int n);
#endif