-
Notifications
You must be signed in to change notification settings - Fork 0
/
render_helpers.c
23 lines (20 loc) · 1.06 KB
/
render_helpers.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* :::::::: */
/* render_helpers.c :+: :+: */
/* +:+ */
/* By: cschuijt <[email protected]> +#+ */
/* +#+ */
/* Created: 2022/11/23 17:38:25 by cschuijt #+# #+# */
/* Updated: 2022/11/23 17:38:25 by cschuijt ######## odam.nl */
/* */
/* ************************************************************************** */
#include "so_long.h"
size_t render_x_pos(t_map *map, size_t i)
{
return ((i % map->width) * 32);
}
size_t render_y_pos(t_map *map, size_t i)
{
return (((i / map->width) * 32) + GUI_OFFSET);
}