Blame view

math/constants.h 118 Bytes
821513c8   David Mayerich   ERROR plane wave ...
1
2
3
4
5
6
7
8
9
10
  #ifndef RTS_CONSTANTS_H
  #define RTS_CONSTANTS_H
  
  namespace rts{
  
  	double PI = 3.14159;
  	double TAU = 2 * PI;
  }
  
  #endif