18 lines
300 B
C++
18 lines
300 B
C++
/** @file constants.hpp
|
|
*
|
|
* @author Cory Alexander Balaton (coryab)
|
|
* @author Janita Ovidie Sandtrøen Willumsen (janitaws)
|
|
*
|
|
* @version 1.0
|
|
*
|
|
* @brief Library of constants
|
|
*
|
|
* @bug No known bugs
|
|
* */
|
|
#ifndef __CONST__
|
|
#define __CONST__
|
|
|
|
#define I std::complex<double>{0., 1.}
|
|
|
|
#endif
|