efl path: add missing value intializing.

It might be broken at some particular vector drawing.
This commit is contained in:
Hermet Park 2016-11-24 15:56:52 +09:00
parent c2cb5defe3
commit 4584fe5721
1 changed files with 1 additions and 1 deletions

View File

@ -758,7 +758,7 @@ _efl_gfx_t_for_arc_angle(double angle)
if (angle < 0.00001) return 0;
if (angle == 90.0) return 1;
//FIXME: radians??
radians = (angle/180) * M_PI;
cos_angle = cos(radians);
sin_angle = sin(radians);