shithub: fractals

ref: 24cb1dcb30000df8f556468ef6b27a899e6a5db7
dir: /complex.h/

View raw version
typedef struct Complex Complex;
struct Complex {
	double r;
	double i;
};

Complex cadd(Complex *a, Complex *b);
Complex cmul(Complex *a, Complex *b);
Complex cpow2(Complex *a);