winex11: wintab.c: use atan2 instead of atan.
authorDan Kegel <dank@kegel.com>
Thu, 6 Mar 2008 20:33:09 +0000 (12:33 -0800)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 7 Mar 2008 09:52:25 +0000 (10:52 +0100)
dlls/winex11.drv/wintab.c

index da18ce0..e5d7071 100644 (file)
@@ -742,35 +742,14 @@ void X11DRV_LoadTabletInfo(HWND hwnddefault)
 
 static int figure_deg(int x, int y)
 {
-    int rc;
+    float angle;
 
-    if (y != 0)
-    {
-        rc = (int) 10 * (atan( (FLOAT)abs(y) / (FLOAT)abs(x)) / (3.1415 / 180));
-        if (y>0)
-        {
-            if (x>0)
-                rc += 900;
-            else
-                rc = 2700 - rc;
-        }
-        else
-        {
-            if (x>0)
-                rc = 900 - rc;
-            else
-                rc += 2700;
-        }
-    }
-    else
-    {
-        if (x >= 0)
-            rc = 900;
-        else
-            rc = 2700;
-    }
+    angle = atan2((float)y, (float)x);
+    angle += M_PI_2;
+    if (angle <= 0)
+       angle += 2 * M_PI;
 
-    return rc;
+    return (0.5 + (angle * 1800.0 / M_PI));
 }
 
 static int get_button_state(int curnum)