home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / misc / icalc.lzh / icalc / src / constant.c < prev    next >
C/C++ Source or Header  |  1992-01-26  |  252b  |  16 lines

  1. /*
  2. *    icalc - complex-expression parser
  3. *
  4. *    Predefined complex constants.
  5. *
  6. *    (C) Martin W Scott, 1991.
  7. */
  8.  
  9. #include "complex.h"
  10.  
  11. const Complex    zero = {0.0, 0.0},
  12.         eye = {0.0, 1.0},
  13.         one = {1.0, 0.0},
  14.         minuseye = {0.0, -1.0},
  15.         onehalf = {0.5, 0.0};
  16.