/* * Copyright (C) 2002 Terence M. Welsh * Ported to Linux by Tugrul Galatali * * 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 #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