-
Notifications
You must be signed in to change notification settings - Fork 0
/
color.h
35 lines (31 loc) · 1.2 KB
/
color.h
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
/* ************************************************************************** */
/* */
/* :::::::: */
/* color.h :+: :+: */
/* +:+ */
/* By: jandre-d <[email protected]> +#+ */
/* +#+ */
/* Created: 2019/03/25 16:00:25 by jandre-d #+# #+# */
/* Updated: 2019/03/30 21:39:34 by jandre-d ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef COLOR_H
# define COLOR_H
# include "./data_types.h"
typedef struct s_hsv_convert_vars
{
double r;
double g;
double b;
double h;
double s;
double v;
double f;
double p;
double q;
double t;
int i;
} t_hsv_convert_vars;
uint32_t get_color_from_iterations(int32_t iter, int32_t max_iter,
int32_t offset);
#endif