examples/sphere_hunter: remove unused function
authorStefan Schmidt <stefan@osg.samsung.com>
Tue, 20 Oct 2015 15:23:19 +0000 (17:23 +0200)
committerStefan Schmidt <stefan@osg.samsung.com>
Tue, 20 Oct 2015 15:23:19 +0000 (17:23 +0200)
After fixing the Coverity issue clang told me that this function is actually
not used at all.

src/examples/sphere_hunter/evas_3d_sphere_hunter.c

index 87f11ae..1307b5f 100644 (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()
 {