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,9 +288,9 @@ free_all (struct map * map, struct vertex_array * array, struct face_item * root
}
int
icosphere (unsigned int nb_iterations, float scale,
unsigned int ** mesh_indices, unsigned int * count_indices,
float ** mesh_vertices, unsigned int * count_vertices)
sweet_geometry_icosphere (unsigned int nb_iterations, float scale,
unsigned int ** mesh_indices, unsigned int * count_indices,
float ** mesh_vertices, unsigned int * count_vertices)
{
struct face_item * root;
struct face_item * f;

View File

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