-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_complex.c
22 lines (19 loc) · 1.01 KB
/
ft_complex.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_complex.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vcastilh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/18 18:56:36 by vcastilh #+# #+# */
/* Updated: 2022/02/21 04:38:57 by vcastilh ### ########.fr */
/* */
/* ************************************************************************** */
#include "fractol.h"
t_complex ft_complex(long double re, long double im)
{
t_complex numb;
numb.re = re;
numb.im = im;
return (numb);
}