aboutsummaryrefslogtreecommitdiffstats
path: root/inc/cub3d_structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/cub3d_structs.h')
-rw-r--r--inc/cub3d_structs.h27
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