php-src/ext/gd/libgd/mathmake.c
Rasmus Lerdorf 7a8cade379 Initial commit of the built-in libgd based on GD-2.0.1
This initial checkin has no changes to any of the libgd code so it can
be used as a basis for diffs.  It also will not build currently because
of this.  The PHP gd checks need to be incorporated along with a bit of
other config magic.  It also shouldn't break the build and will only
take effect if you use --with-gd=php right now.
2002-04-13 02:03:09 +00:00

53 lines
1010 B
C

#include <stdio.h>
#include <math.h>
#define scale 1024
int basis[91];
int cost[360];
main (void)
{
int i;
printf ("#define costScale %d\n", scale);
printf ("int cost[] = {\n ");
for (i = 0; (i <= 90); i++)
{
basis[i] = cos ((double) i * .0174532925) * scale;
}
for (i = 0; (i < 90); i++)
{
printf ("%d,\n ", cost[i] = basis[i]);
}
for (i = 90; (i < 180); i++)
{
printf ("%d,\n ", cost[i] = -basis[180 - i]);
}
for (i = 180; (i < 270); i++)
{
printf ("%d,\n ", cost[i] = -basis[i - 180]);
}
for (i = 270; (i < 359); i++)
{
printf ("%d,\n ", cost[i] = basis[360 - i]);
}
printf ("%d\n", cost[359] = basis[1]);
printf ("};\n");
printf ("#define sintScale %d\n", scale);
printf ("int sint[] = {\n ");
for (i = 0; (i < 360); i++)
{
int val;
val = cost[(i + 270) % 360];
if (i != 359)
{
printf ("%d,\n ", val);
}
else
{
printf ("%d\n", val);
}
}
printf ("};\n");
}