examples/sphere_hunter: remove unused function

After fixing the Coverity issue clang told me that this function is actually
not used at all.
This commit is contained in:
Stefan Schmidt 2015-10-20 17:23:19 +02:00
parent 0e558fd750
commit d1fd0e34a4
1 changed files with 0 additions and 19 deletions

View File

@ -179,25 +179,6 @@ static const unsigned short cube_indices[] =
20, 21, 22, 22, 21, 23
};
static inline vec3
_normalize(const vec3 *v)
{
double l;
vec3 vec = {0.0, 0.0, 0.0};
l = sqrt((v->x * v->x) + (v->y * v->y) + (v->z * v->z));
if (l != 0)
{
vec.x = v->x / l;
vec.y = v->y / l;
vec.z = v->z / l;
}
return vec;
}
static void
_sphere_fini()
{