From e821fb7ab1232349f0be023b08dafee75da02ea9 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Mon, 9 Mar 2020 21:01:07 +0100 Subject: Almost there --- src/ft_draw_skybox.c | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/ft_draw_skybox.c (limited to 'src/ft_draw_skybox.c') diff --git a/src/ft_draw_skybox.c b/src/ft_draw_skybox.c new file mode 100644 index 0000000..a446485 --- /dev/null +++ b/src/ft_draw_skybox.c @@ -0,0 +1,38 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_draw_skybox.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:22:57 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:23:42 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#include +#include + +void + ft_draw_skybox(t_cub *cl) +{ + int offset; + + offset = 640; + if (cl->plist.dir_x > 0) + offset = -offset; + mlx_put_image_to_window(cl->wlist.wlx, cl->wlist.winptr, + cl->tlist[7].img, offset * cl->plist.dir_y, -125); + mlx_put_image_to_window(cl->wlist.wlx, cl->wlist.winptr, + cl->tlist[7].img, offset * cl->plist.dir_y, -125); + mlx_put_image_to_window(cl->wlist.wlx, cl->wlist.winptr, + cl->tlist[7].img, offset * cl->plist.dir_y, -125); + mlx_put_image_to_window(cl->wlist.wlx, cl->wlist.winptr, + cl->tlist[7].img, offset * cl->plist.dir_y, -125); + mlx_put_image_to_window(cl->wlist.wlx, cl->wlist.winptr, + cl->tlist[7].img, offset * cl->plist.dir_y, -125); + mlx_put_image_to_window(cl->wlist.wlx, cl->wlist.winptr, + cl->tlist[7].img, offset * cl->plist.dir_y, -125); + mlx_put_image_to_window(cl->wlist.wlx, cl->wlist.winptr, + cl->tlist[7].img, offset * cl->plist.dir_y, -125); +} -- cgit v1.2.3