fix remapping behavior. Remapping is only necessary if we are rendering on the workbe...
[AROS-Contrib.git] / rexx / lstring / atan2.c
blob851a76b27874267dd0ce9ac4ec0f09907e626be0
1 /*
2 * $Header$
3 * $Log$
4 * Revision 1.1 2001/04/04 05:43:37 wang
5 * First commit: compiles on Linux, Amiga, Windows, Windows CE, generic gcc
7 * Revision 1.1 1998/07/02 17:16:35 bnv
8 * Initial revision
12 #include <math.h>
13 #include <lstring.h>
15 /* ----------------- Lpow --------------------- */
16 void
17 Latan2( const PLstr to, const PLstr x, const PLstr y )
19 Lrcpy(to, atan2(Lrdreal(x),Lrdreal(y)));
20 } /* Latan2 */