diff options
Diffstat (limited to 'src/ft_extra_keys.c')
-rw-r--r-- | src/ft_extra_keys.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ft_extra_keys.c b/src/ft_extra_keys.c index 1a81820..c1ea721 100644 --- a/src/ft_extra_keys.c +++ b/src/ft_extra_keys.c @@ -17,7 +17,6 @@ #include <libft.h> #include <pthread.h> -#include <stdio.h> int ft_left_key(t_cub *clist) { @@ -33,8 +32,6 @@ int sav_plane_x = pl->plane_x; pl->plane_x = pl->plane_x * cos(rot_speed) - pl->plane_y * sin(rot_speed); pl->plane_y = sav_plane_x * sin(rot_speed) + pl->plane_y * cos(rot_speed); - printf("dir_y %+f\n", pl->dir_y); - printf("dir_x %+f\n\n", pl->dir_x); return (0); } @@ -53,8 +50,6 @@ int sav_plane_x = pl->plane_x; pl->plane_x = pl->plane_x * cos(-rot_speed) - pl->plane_y * sin(-rot_speed); pl->plane_y = sav_plane_x * sin(-rot_speed) + pl->plane_y * cos(-rot_speed); - printf("dir_y %+f\n", pl->dir_y); - printf("dir_x %+f\n\n", pl->dir_x); return (0); } |