home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / g / gs252src.zip / GS252 / MATH_.H < prev    next >
C/C++ Source or Header  |  1992-09-17  |  2KB  |  55 lines

  1. /* Copyright (C) 1989, 1992 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* math_.h */
  21. /* Generic substitute for math.h */
  22.  
  23. /* We must include std.h before any file that includes sys/types.h. */
  24. #include "std.h"
  25.  
  26. #ifdef VMS
  27. /*  DEC VAX/VMS C comes with a math.h file, but GNU VAX/VMS C does not. */
  28. #  include "vmsmath.h"
  29. #else
  30. #  include <math.h>
  31. #endif
  32.  
  33. /* math.h is different for Turbo and Unix.... */
  34. #ifndef M_PI
  35. #  ifdef PI
  36. #    define M_PI PI
  37. #  else
  38. #    define M_PI 3.14159265358979324
  39. #  endif
  40. #endif
  41.  
  42. /* Factors for converting between degrees and radians */
  43. #define degrees_to_radians (M_PI / 180.0)
  44. #define radians_to_degrees (180.0 / M_PI)
  45.  
  46. /* Define the hypot procedure on those few systems that don't provide it. */
  47. #ifdef _IBMR2
  48. /* The RS/6000 has hypot, but math.h doesn't declare it! */
  49. extern double hypot(double, double);
  50. #else
  51. #  if !defined(__TURBOC__) && !defined(BSD4_2) && !defined(VMS)
  52. #    define hypot(x,y) sqrt((x)*(x)+(y)*(y))
  53. #  endif
  54. #endif
  55.