home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / SNIP9404.ZIP / ROUND.H < prev    next >
Text File  |  1994-04-03  |  226b  |  12 lines

  1. /*
  2. ** rounding macros by Dave Knapp & Thad Smith
  3. */
  4.  
  5. /* round to integer */
  6.  
  7. #define iround(x) floor((x)+0.5)
  8.  
  9. /* round number n to d decimal points */
  10.  
  11. #define fround(n,d) (floor((n)*pow(10.,(d))+.5)/pow(10.,(d)))
  12.