Move definition of PI into puzzles.h. If nothing else, the definition in cube.c

had a typo :)

[originally from svn r5878]
This commit is contained in:
Jacob Nevins
2005-05-31 12:03:25 +00:00
parent caee305b47
commit a029c2095d
5 changed files with 2 additions and 8 deletions

View File

@ -13,8 +13,6 @@
#include "puzzles.h"
#include "tree234.h"
#define PI 3.141592653589793238462643383279502884197169399
#define MATMUL(xr,yr,m,x,y) do { \
float rx, ry, xx = (x), yy = (y), *mat = (m); \
rx = mat[0] * xx + mat[2] * yy; \