File: rt_defines.h

    1   /*
    2    * Academic License - for use in teaching, academic research, and meeting
    3    * course requirements at degree granting institutions only.  Not for
    4    * government, commercial, or other organizational use.
    5    *
    6    * rt_defines.h
    7    *
    8    * Code generation for function 'calculateTransformations'
    9    *
   10    */
   11   
   12   #ifndef __RT_DEFINES_H__
   13   #define __RT_DEFINES_H__
   14   #include <stdlib.h>
   15   #define RT_PI                          3.14159265358979323846
   16   #define RT_PIF                         3.1415927F
   17   #define RT_LN_10                       2.30258509299404568402
   18   #define RT_LN_10F                      2.3025851F
   19   #define RT_LOG10E                      0.43429448190325182765
   20   #define RT_LOG10EF                     0.43429449F
   21   #define RT_E                           2.7182818284590452354
   22   #define RT_EF                          2.7182817F
   23   #endif
   24   
   25   /* End of code generation (rt_defines.h) */
   26