diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cub3d_structs.h | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index 1a45860..cc5d805 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -43,19 +43,24 @@ 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_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]; + uint16_t line_h; } t_ray; typedef struct s_cub |