diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-29 17:34:48 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-29 17:34:48 +0200 |
commit | 69ca60b6f989dedc94c2e25ab9927b26d63cbdf8 (patch) | |
tree | 28fb01bf9380925e60c19caaf967cb28685ca3bd /inc/cub3d.h | |
parent | The greatest (diff) | |
download | 42-cub3d-69ca60b6f989dedc94c2e25ab9927b26d63cbdf8.tar.gz 42-cub3d-69ca60b6f989dedc94c2e25ab9927b26d63cbdf8.tar.bz2 42-cub3d-69ca60b6f989dedc94c2e25ab9927b26d63cbdf8.tar.xz 42-cub3d-69ca60b6f989dedc94c2e25ab9927b26d63cbdf8.tar.zst 42-cub3d-69ca60b6f989dedc94c2e25ab9927b26d63cbdf8.zip |
Norm
Diffstat (limited to 'inc/cub3d.h')
-rw-r--r-- | inc/cub3d.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index 82808f4..aa81b4c 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -87,7 +87,9 @@ void ft_draw_circle(float a, float b, int32_t color, t_cub *cl); void ft_draw_verline(t_cub *cl, int32_t x, int32_t y, int32_t y2); void ft_sprite_h_w(t_cub *cl, t_sprite *sprite); -float **ft_alloc_dist_tab(void); +void ft_alloc_big_t(t_cub *cl); +void ft_fill_big_t(float **dist_tab, t_cub *cl); +void ft_sort_big_t(t_cub *cl); void ft_sort_sprites(t_cub *cl, int16_t i, int16_t j); void ft_sort_s_t(t_cub *cl, float **dist_tab); void ft_calc_sprite(t_cub *cl); |