/* ************************************************************************** */ /* */ /* ::: o_ :::::: ::: */ /* fdf.h :+: / :+::+: :+: */ /* +:+ > +:++:+ +:+ */ /* By: whaffman +#+ +:+ +#++#++:++#++ */ /* +#+ +#+#+ +#++#+ +#+ \o/ */ /* Created: 2024/12/06 11:07:39 by whaffman #+#+# #+#+# #+# #+# | */ /* Updated: 2024/12/06 11:11:56 by whaffman ### ### ### ### / \ */ /* */ /* ************************************************************************** */ #ifndef FDF_H # define FDF_H # include "libft.h" # include # include # include # include # include # include typedef struct s_point { float x; float y; float z; } t_point; typedef struct s_map { t_point *points; int width; int height; int z_max; } t_map; #endif