hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=4584fe572166b4a70e1c23222ac0bfb96bc20933

commit 4584fe572166b4a70e1c23222ac0bfb96bc20933
Author: Hermet Park <her...@hermet.pe.kr>
Date:   Thu Nov 24 15:56:52 2016 +0900

    efl path: add missing value intializing.
    
    It might be broken at some particular vector drawing.
---
 src/lib/efl/interfaces/efl_gfx_path.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/efl/interfaces/efl_gfx_path.c 
b/src/lib/efl/interfaces/efl_gfx_path.c
index 5cb6385..631ec2e 100644
--- a/src/lib/efl/interfaces/efl_gfx_path.c
+++ b/src/lib/efl/interfaces/efl_gfx_path.c
@@ -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);

-- 


Reply via email to