Overview
Comment:Defined pi to be 3.1416 if M_PI is not defined.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 858295a4d4cebdd1df3923675ebee1aeccf640dc4653840e4064c8342b9fa370
User & Date: geraint@users.sourceforge.net on 2004-02-10 11:42:05.000
Other Links: branch diff | manifest | tags
Context
2004-02-10
12:53:16
Updated using version 1.38 from syncmail project. check-in: 6de94d78bd user: geraint@users.sourceforge.net tags: origin/master, trunk
11:42:05
Defined pi to be 3.1416 if M_PI is not defined. check-in: 858295a4d4 user: geraint@users.sourceforge.net tags: origin/master, trunk
10:22:10
Do proper arithmetic via let
Three levels of output
enumerate, not itemize
check-in: ece62a8944 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes
20
21
22
23
24
25
26
27

28
29
30
31





32
33
34
35
36
37
38
20
21
22
23
24
25
26

27
28
29
30

31
32
33
34
35
36
37
38
39
40
41
42







-
+



-
+
+
+
+
+







*/
#else
#include <cmath>
#define cast_to_double	static_cast<double>
using std::pow;
#endif /* ! __cplusplus */


#ifdef M_PI
static double pi = M_PI;
static double Pi = M_PI;
static double PI = M_PI;

#else
static double pi = 3.1416;
static double Pi = pi;
static double PI = pi;
#endif

static inline double
max (const double x1, const double x2)
{
  return cast_to_double ((x1 >= x2) ? x1 : (x1 < x2) ? x2 : 0);
}


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]