-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmandelbrot.c
73 lines (67 loc) · 2.79 KB
/
mandelbrot.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* mandelbrot.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yait-iaz <yait-iaz@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/06 15:37:36 by yait-iaz #+# #+# */
/* Updated: 2022/01/11 20:27:56 by yait-iaz ### ########.fr */
/* */
/* ************************************************************************** */
#include "fract.h"
int ft_iteration_man(t_complex z, int x, int y, t_display *mlx)
{
t_complex result;
t_complex c;
mlx->it = 0;
c.real = ((x * mlx->xscale) - mlx->zoom_x);
c.imag = ((y * mlx->yscale) - mlx->zoom_y);
while (((z.real * z.real) + (z.imag * z.imag) < 4) && mlx->it < mlx->max_it)
{
result.real = ((z.real * z.real) - (z.imag * z.imag)) + c.real;
result.imag = (2 * z.imag * z.real) + c.imag;
z = result;
mlx->it++;
}
return (mlx->it);
}
void lighting_pixels_man(t_display *mlx)
{
int x;
int y;
t_complex z;
z.real = 0.0;
z.imag = 0.0;
y = 0;
while (y < SIDE)
{
x = 0;
while (x < SIDE)
{
mlx->it = ft_iteration_man(z, x, y, mlx);
// mlx_pixel_put();
pixels_image(mlx, x, y, coloring_pixels(mlx));
x++;
}
y++;
}
mlx_put_image_to_window(mlx->init, mlx->win, mlx->img->img, 0, 0);
mlx_string_put(mlx->init, mlx->win, 5, 0, 0xffffff, "press space for help");
mlx_string_put(mlx->init, mlx->win, 700, 770, 0xffffff, "By Ma3ert");
if (mlx->h == -1)
ft_help(mlx);
}
void ft_help(t_display *mlx)
{
mlx_clear_window(mlx->init, mlx->win);
mlx_string_put(mlx->init, mlx->win, 220, 200, 0xFFFF00, "---------- Ma3ert HELP ---------");
mlx_string_put(mlx->init, mlx->win, 200, 250, 0xffffff, "use the mouse wheel to zoom in & out");
mlx_string_put(mlx->init, mlx->win, 200, 300, 0xffffff, "hey you can change the color");
mlx_string_put(mlx->init, mlx->win, 200, 350, 0xffffff, "to change the value of Red use r/t");
mlx_string_put(mlx->init, mlx->win, 200, 400, 0xffffff, "to change the value of Green use g/h");
mlx_string_put(mlx->init, mlx->win, 200, 450, 0xffffff, "to change the value of Blue use b/n");
mlx_string_put(mlx->init, mlx->win, 200, 500, 0xffffff, "use the arrows to move the image ");
mlx_string_put(mlx->init, mlx->win, 200, 550, 0xffffff, "close help by pressing the space bar");
mlx_string_put(mlx->init, mlx->win, 220, 600, 0xFFFF00, "----------- SEE YOU!!---------");
}