VIP: Volume Image Processing


math.h
Go to the documentation of this file.
1/****************************************************************************
2 * PROJECT : V.I.P. Library
3 * MODULE NAME : vip/math.h * TYPE : Header
4 * AUTHOR : POUPON F. * CREATION : 31/01/1997
5 * VERSION : 0.1 * REVISION :
6 * LANGUAGE : C++ * EXAMPLE :
7 * DEVICE : Sun SPARC Station 5
8 ****************************************************************************
9 *
10 * DESCRIPTION : Declarations du package de calcul mathematique
11 *
12 ****************************************************************************
13 *
14 * USED MODULES :
15 *
16 ****************************************************************************
17 * REVISIONS : DATE | AUTHOR | DESCRIPTION
18 *--------------------|--------------|---------------------------------------
19 * / / | |
20 ****************************************************************************/
21
22#ifndef VIP_MATH_H
23#define VIP_MATH_H
24
25#ifdef __cplusplus
26 extern "C" {
27#endif
28
29#include <math.h>
30
31#ifndef M_PI
32#define M_PI 3.14159265358979323846
33#endif
34
35#ifndef PI
36#define PI M_PI
37#endif
38
39#include <vip/volume.h>
40#include <vip/alloc.h>
41#include <vip/util.h>
42
43#include <vip/math/random.h>
44#include <vip/math/trigo.h>
45#include <vip/math/matrix.h>
46#include <vip/math/vector_gen.h>
47
48#ifdef __cplusplus
49 }
50#endif
51
52#endif