dos33fsprogs/graphics/galaxy/test.c
Vince Weaver e0febd1a90 demos: more work
keep making git mistakes urgh
2021-01-05 22:52:10 -05:00

12 lines
176 B
C

#include <stdio.h>
#include <math.h>
int main(int argc, char **argv) {
printf("%lf\n",atan2(1,1));
printf("%lf\n",atan2(1,-1));
printf("%lf\n",atan2(-1,1));
return 0;
}