00001 /* 00002 * Copyright (c) 1998, University of Amsterdam, The Netherlands. 00003 * All rights reserved. 00004 * 00005 * 00006 * Author(s): 00007 * Dennis Koelma (koelma@wins.uva.nl) 00008 * Edo Poll (poll@wins.uva.nl) 00009 */ 00010 00011 #ifndef HxMath_h 00012 #define HxMath_h 00013 00014 // Wrapper file around math.h. 00015 00016 #ifdef __P 00017 #undef __P 00018 #endif 00019 00020 #include <cmath> 00021 00022 #ifndef M_PI 00023 #define M_PI 3.14159265358979323846 00024 #endif 00025 00026 #endif