From d105248f0b08a5c37221a91365a8edb56ce6766d Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Wed, 5 Feb 2020 20:56:58 +0100 Subject: Experiment --- inc/cub3d.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'inc') diff --git a/inc/cub3d.h b/inc/cub3d.h index 7b6cfc5..0d1c8df 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -78,6 +78,21 @@ typedef struct s_player float view_side; } t_player; +typedef struct s_ray +{ + double x_ray_position; + double y_ray_position; + double x_ray_direction; + double y_ray_direction; + double x_side_distance; + double y_side_distance; + double x_delta_distance; + double y_delta_distance; + int hitX; + int hitY; + int hits[150]; +} t_ray; + typedef struct s_cub { char *no_tex_path; -- cgit v1.2.3