Correct a bad name

This commit is contained in:
Luc Girod 2014-04-30 07:02:22 +02:00
parent 597ab9f98c
commit 1da4e82e8d
2 changed files with 6 additions and 6 deletions

View File

@ -288,7 +288,7 @@ free_all (struct map * map, struct vertex_array * array, struct face_item * root
} }
int int
icosphere (unsigned int nb_iterations, float scale, sweet_geometry_icosphere (unsigned int nb_iterations, float scale,
unsigned int ** mesh_indices, unsigned int * count_indices, unsigned int ** mesh_indices, unsigned int * count_indices,
float ** mesh_vertices, unsigned int * count_vertices) float ** mesh_vertices, unsigned int * count_vertices)
{ {

View File

@ -1,7 +1,7 @@
#ifndef SWEET_GEOMETRY_H #ifndef SWEET_GEOMETRY_H
#define SWEET_GEOMETRY_H #define SWEET_GEOMETRY_H
int icosphere (unsigned int nb_iterations, float scale, int sweet_geometry_icosphere (unsigned int nb_iterations, float scale,
unsigned int ** mesh_indices, unsigned int * count_indices, unsigned int ** mesh_indices, unsigned int * count_indices,
float ** mesh_vertices, unsigned int * count_vertices); float ** mesh_vertices, unsigned int * count_vertices);
#endif #endif