├── README.md ├── cub3_untex ├── LIB │ ├── GNL │ │ ├── get_next_line.c │ │ ├── get_next_line.h │ │ ├── get_next_line_bonus.c │ │ ├── get_next_line_bonus.h │ │ ├── get_next_line_utils.c │ │ └── get_next_line_utils_bonus.c │ ├── LIBFT │ │ ├── Makefile │ │ ├── ft_atoi.c │ │ ├── ft_bzero.c │ │ ├── ft_calloc.c │ │ ├── ft_isalnum.c │ │ ├── ft_isalpha.c │ │ ├── ft_isascii.c │ │ ├── ft_isdigit.c │ │ ├── ft_isprint.c │ │ ├── ft_itoa.c │ │ ├── ft_lstadd_back.c │ │ ├── ft_lstadd_front.c │ │ ├── ft_lstclear.c │ │ ├── ft_lstdelone.c │ │ ├── ft_lstiter.c │ │ ├── ft_lstlast.c │ │ ├── ft_lstmap.c │ │ ├── ft_lstnew.c │ │ ├── ft_lstsize.c │ │ ├── ft_memchr.c │ │ ├── ft_memcmp.c │ │ ├── ft_memcpy.c │ │ ├── ft_memmove.c │ │ ├── ft_memset.c │ │ ├── ft_putchar_fd.c │ │ ├── ft_putendl_fd.c │ │ ├── ft_putnbr_fd.c │ │ ├── ft_putstr_fd.c │ │ ├── ft_split.c │ │ ├── ft_strchr.c │ │ ├── ft_strdup.c │ │ ├── ft_striteri.c │ │ ├── ft_strjoin.c │ │ ├── ft_strlcat.c │ │ ├── ft_strlcpy.c │ │ ├── ft_strlen.c │ │ ├── ft_strmapi.c │ │ ├── ft_strncmp.c │ │ ├── ft_strnstr.c │ │ ├── ft_strrchr.c │ │ ├── ft_strtrim.c │ │ ├── ft_substr.c │ │ ├── ft_tolower.c │ │ ├── ft_toupper.c │ │ └── libft.h │ └── key_macos.h ├── MAP │ ├── map.cub │ └── small.cub ├── MLX │ ├── Makefile │ ├── font.c │ ├── font.xcf │ ├── mlx.h │ ├── mlx_init_loop.m │ ├── mlx_int.h │ ├── mlx_int_str_to_wordtab.c │ ├── mlx_mouse.m │ ├── mlx_new_image.m │ ├── mlx_new_window.h │ ├── mlx_new_window.m │ ├── mlx_opengl.h │ ├── mlx_opengl.m │ ├── mlx_png.c │ ├── mlx_png.h │ ├── mlx_rgb.c │ ├── mlx_shaders.c │ └── mlx_xpm.c ├── Makefile ├── SRC │ ├── cub_get_map.c │ ├── cub_get_wallcoord.c │ ├── cub_grid_checkers.c │ ├── cub_grid_coordcheck.c │ ├── cub_init.c │ ├── cub_initial_dis.c │ ├── cub_key.c │ ├── cub_math.c │ ├── cub_raycast.c │ ├── cub_tools.c │ ├── cub_wall_check.c │ └── main.c └── cub3d.h └── images ├── .DS_Store ├── 1.png ├── 10.png ├── 2.png ├── 20.gif ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── H-D.png ├── H-U.png ├── V-L.png └── V-R.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/README.md -------------------------------------------------------------------------------- /cub3_untex/LIB/GNL/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/GNL/get_next_line.c -------------------------------------------------------------------------------- /cub3_untex/LIB/GNL/get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/GNL/get_next_line.h -------------------------------------------------------------------------------- /cub3_untex/LIB/GNL/get_next_line_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/GNL/get_next_line_bonus.c -------------------------------------------------------------------------------- /cub3_untex/LIB/GNL/get_next_line_bonus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/GNL/get_next_line_bonus.h -------------------------------------------------------------------------------- /cub3_untex/LIB/GNL/get_next_line_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/GNL/get_next_line_utils.c -------------------------------------------------------------------------------- /cub3_untex/LIB/GNL/get_next_line_utils_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/GNL/get_next_line_utils_bonus.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/Makefile -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_atoi.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_bzero.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_calloc.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_isalnum.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_isalpha.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_isascii.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_isdigit.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_isprint.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_itoa.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_lstadd_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_lstadd_back.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_lstadd_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_lstadd_front.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_lstclear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_lstclear.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_lstdelone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_lstdelone.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_lstiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_lstiter.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_lstlast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_lstlast.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_lstmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_lstmap.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_lstnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_lstnew.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_lstsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_lstsize.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_memchr.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_memcmp.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_memcpy.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_memmove.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_memset.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_putchar_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_putchar_fd.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_putendl_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_putendl_fd.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_putnbr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_putnbr_fd.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_putstr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_putstr_fd.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_split.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strchr.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strdup.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_striteri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_striteri.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strjoin.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strlcat.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strlcpy.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strlen.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strmapi.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strncmp.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strnstr.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strrchr.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_strtrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_strtrim.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_substr.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_tolower.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/ft_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/ft_toupper.c -------------------------------------------------------------------------------- /cub3_untex/LIB/LIBFT/libft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/LIBFT/libft.h -------------------------------------------------------------------------------- /cub3_untex/LIB/key_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/LIB/key_macos.h -------------------------------------------------------------------------------- /cub3_untex/MAP/map.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MAP/map.cub -------------------------------------------------------------------------------- /cub3_untex/MAP/small.cub: -------------------------------------------------------------------------------- 1 | 01 2 | 10 -------------------------------------------------------------------------------- /cub3_untex/MLX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/Makefile -------------------------------------------------------------------------------- /cub3_untex/MLX/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/font.c -------------------------------------------------------------------------------- /cub3_untex/MLX/font.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/font.xcf -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx.h -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_init_loop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_init_loop.m -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_int.h -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_int_str_to_wordtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_int_str_to_wordtab.c -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_mouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_mouse.m -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_new_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_new_image.m -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_new_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_new_window.h -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_new_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_new_window.m -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_opengl.h -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_opengl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_opengl.m -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_png.c -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_png.h -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_rgb.c -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_shaders.c -------------------------------------------------------------------------------- /cub3_untex/MLX/mlx_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/MLX/mlx_xpm.c -------------------------------------------------------------------------------- /cub3_untex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/Makefile -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_get_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_get_map.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_get_wallcoord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_get_wallcoord.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_grid_checkers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_grid_checkers.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_grid_coordcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_grid_coordcheck.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_init.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_initial_dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_initial_dis.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_key.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_math.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_raycast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_raycast.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_tools.c -------------------------------------------------------------------------------- /cub3_untex/SRC/cub_wall_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/cub_wall_check.c -------------------------------------------------------------------------------- /cub3_untex/SRC/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/SRC/main.c -------------------------------------------------------------------------------- /cub3_untex/cub3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/cub3_untex/cub3d.h -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/1.png -------------------------------------------------------------------------------- /images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/10.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/2.png -------------------------------------------------------------------------------- /images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/20.gif -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/4.png -------------------------------------------------------------------------------- /images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/5.png -------------------------------------------------------------------------------- /images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/6.png -------------------------------------------------------------------------------- /images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/7.png -------------------------------------------------------------------------------- /images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/8.png -------------------------------------------------------------------------------- /images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/9.png -------------------------------------------------------------------------------- /images/H-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/H-D.png -------------------------------------------------------------------------------- /images/H-U.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/H-U.png -------------------------------------------------------------------------------- /images/V-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/V-L.png -------------------------------------------------------------------------------- /images/V-R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Saxsori/ray-cast/HEAD/images/V-R.png --------------------------------------------------------------------------------