File: rsDefines.h

package info (click to toggle)
rss-glx 0.8.1-10
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 11,388 kB
  • ctags: 1,854
  • sloc: cpp: 13,243; ansic: 4,442; sh: 801; xml: 581; makefile: 181; perl: 50
file content (42 lines) | stat: -rw-r--r-- 1,157 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * Copyright (C) 2002  Terence M. Welsh
 * Ported to Linux by Tugrul Galatali <tugrul@galatali.com>
 *
 * rsMath is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as 
 * published by the Free Software Foundation.
 *
 * rsMath is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef RSDEFINES_H
#define RSDEFINES_H

#include <math.h>

#define PI M_PI
#define PIx2 (M_PI * 2)
#define DEG2RAD (M_PI / 180)
#define RAD2DEG (180 / M_PI)

#define RSEPSILON 0.000001f
#define RS_PIo2 1.5707963268f
#define RS_PI 3.14159265359f
#define RS_PIx2 6.28318530718f

#ifndef MAX
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#endif

#ifndef MIN
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#endif

#endif