Difference for include/maths.h from version 1.2 to 1.3


version 1.2 version 1.3
Line 18
 
Line 18
   
 //=============================== FIXED POINT ===============================  //=============================== FIXED POINT ===============================
   
 typedef long fix; //16 bits int, 16 bits frac  typedef int32_t fix; //16 bits int, 16 bits frac
 typedef short fixang; //angles  typedef int16_t fixang; //angles
   
 typedef struct quad  typedef struct quad
   {    {
     ulong low;      u_int32_t low;
     long high;      int32_t high;
   }    }
 quad;  quad;
   

Legend:
line(s) removed in v.1.2 
line(s) changed
 line(s) added in v.1.3