diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-02-24 16:14:24 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-24 16:14:24 +0100 |
| commit | 1987bca74aec7b8937e6cc69ebf9c584b0467bad (patch) | |
| tree | af79fd5153d9605488f6b0c7a3de988a09994f5e /include/fractol.h | |
| parent | c6f87a62b31325e91bc8c847de9b20647a9b1cd8 (diff) | |
| download | fractol-1987bca74aec7b8937e6cc69ebf9c584b0467bad.tar.gz fractol-1987bca74aec7b8937e6cc69ebf9c584b0467bad.tar.bz2 fractol-1987bca74aec7b8937e6cc69ebf9c584b0467bad.zip | |
Added tricorn fractal
Diffstat (limited to 'include/fractol.h')
| -rw-r--r-- | include/fractol.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/fractol.h b/include/fractol.h index e315e6b..c55791a 100644 --- a/include/fractol.h +++ b/include/fractol.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/24 09:28:16 by cacharle #+# #+# */ -/* Updated: 2020/02/24 15:29:50 by cacharle ### ########.fr */ +/* Updated: 2020/02/24 16:09:21 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -86,7 +86,7 @@ typedef struct s_state t_func_fractal func; t_complex center; t_complex plane; - t_complex julia_const; + t_complex c; } t_state; /* @@ -117,6 +117,7 @@ int event_mouse_motion(int x, int y, t_state *state); int mandelbrot(t_state *state, t_complex z); int julia(t_state *state, t_complex z); +int tricorn(t_state *state, t_complex z); /* ** helper.c |
