-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfdf.h
More file actions
58 lines (55 loc) · 1.71 KB
/
fdf.h
File metadata and controls
58 lines (55 loc) · 1.71 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* fdf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yaskour <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/28 13:00:42 by yaskour #+# #+# */
/* Updated: 2022/01/15 18:33:58 by yaskour ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FDF_H
# define FDF_H
# include <mlx.h>
# include <stdio.h>
# include <fcntl.h>
# include <math.h>
# include "get_next_line.h"
# include "libft/libft.h"
# define WIN_WIDTH 2880
# define WIN_HEIGHT 1800
typedef struct data
{
void *mlx;
void *xpm_img;
void *win;
int height;
int width;
int **map;
int **color_map;
float x;
float x1;
float y;
float y1;
int zoom;
int color;
int shift_x;
int shift_y;
int p;
float anglex;
float angley;
int depth;
} t_data;
int get_width(char *filename, int check);
int get_height(char *filename);
void read_fdf(char *filename, t_data *ptr);
void draw(t_data *data);
void algo(t_data *data);
int press(int key, t_data *data);
int mouseh(int button, int x, int y, t_data *data);
void menu(t_data *data);
float max(float a, float b);
int ato_h(char *hex);
void invalid_file(void);
#endif