Dependencies: DMSupport DMemWin
embedded/complex.cpp@0:08606a13a816, 2016-06-02 (annotated)
- Committer:
- destinyXfate
- Date:
- Thu Jun 02 05:04:57 2016 +0000
- Revision:
- 0:08606a13a816
;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
destinyXfate | 0:08606a13a816 | 1 | // Include header file |
destinyXfate | 0:08606a13a816 | 2 | #include "complex.h" |
destinyXfate | 0:08606a13a816 | 3 | |
destinyXfate | 0:08606a13a816 | 4 | // Imaginary unity constants |
destinyXfate | 0:08606a13a816 | 5 | const complex complex::i(0., 1.); |
destinyXfate | 0:08606a13a816 | 6 | const complex complex::j(0., 1.); |
destinyXfate | 0:08606a13a816 | 7 |