aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_sort_s_t.c
blob: f015abcf1bded6380041c9b145328ccf44cdffb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_sort_s_t.c                                      :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/24 20:22:45 by rbousset          #+#    #+#             */
/*   Updated: 2020/03/09 18:56:01 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <libft.h>
#include <cub3d.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

/*clearpilled*/

void
    ft_sort_s_t(t_cub *cl, float dist_tab[8][4096])
{
	uint16_t	i;
	int32_t     tmp;

	i = 0;
	while (i < cl->mlist.sprite_var)
	{
		if (dist_tab[i][0] < dist_tab[i + 1][0])
        {
            i = 0;
		}
		i++;
	}
}