home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Otherware
/
Otherware_1_SB_Development.iso
/
amiga
/
misc
/
icalc.lzh
/
icalc
/
src
/
constant.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-26
|
252b
|
16 lines
/*
* icalc - complex-expression parser
*
* Predefined complex constants.
*
* (C) Martin W Scott, 1991.
*/
#include "complex.h"
const Complex zero = {0.0, 0.0},
eye = {0.0, 1.0},
one = {1.0, 0.0},
minuseye = {0.0, -1.0},
onehalf = {0.5, 0.0};