mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
filter-v2 : move math defines as typed constants
This commit is contained in:
parent
8a909775ca
commit
8efa4bd3e7
@ -17,13 +17,6 @@
|
||||
|
||||
// Elliptic (Cauer) filters, odd order
|
||||
|
||||
#ifndef M_1_PI
|
||||
#define M_1_PI 0.3183098861837906715377675267450287
|
||||
#endif
|
||||
#ifndef M_LN2
|
||||
#define M_LN2 0.6931471805599453094172321214581766
|
||||
#endif
|
||||
|
||||
#undef _QF_CAUER_DEBUG
|
||||
|
||||
#include "qf_common.h"
|
||||
|
@ -18,14 +18,14 @@
|
||||
#include <typeinfo>
|
||||
#include <Q3TextStream>
|
||||
|
||||
// may clash with Qt defined M_PI
|
||||
// guard against cmath (or Qt) inclusion of math.h
|
||||
#ifndef M_PI
|
||||
const double M_PI = 3.14;
|
||||
const double M_PI_2 = M_PI/2.0;
|
||||
#endif
|
||||
//const double M_SQRT2 = 1.41421356237309504880168872420969808 /* sqrt(2) */
|
||||
const double M_PI = 3.1415926535897932384626433832795029; /* pi */
|
||||
const double M_PI_2 = M_PI/2.0; /* pi/2 */
|
||||
const double M_1_PI = 0.3183098861837906715377675267450287;
|
||||
const double M_LN2 = 0.6931471805599453094172321214581766;
|
||||
const double M_SQRT1_2 = 0.707106781186547524400844362104849039; /* 1/sqrt(2) */
|
||||
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user