aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_square.c
diff options
context:
space:
mode:
authorRudy Bousset <rbousset@z3r8p1.le-101.fr>2020-02-13 19:22:15 +0100
committerRudy Bousset <rbousset@z3r8p1.le-101.fr>2020-02-13 19:22:15 +0100
commitfb98fd19ba9e27eb3a169a7599ce41fb0877b7a6 (patch)
tree2185933c9bde571819dfd480b48aa66459a30b2e /src/ft_draw_square.c
parentSolid map is better (diff)
download42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.tar.gz
42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.tar.bz2
42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.tar.xz
42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.tar.zst
42-cub3d-fb98fd19ba9e27eb3a169a7599ce41fb0877b7a6.zip
Better code structure
Diffstat (limited to 'src/ft_draw_square.c')
-rw-r--r--src/ft_draw_square.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/ft_draw_square.c b/src/ft_draw_square.c
new file mode 100644
index 0000000..72cf904
--- /dev/null
+++ b/src/ft_draw_square.c
@@ -0,0 +1,37 @@
+/* ************************************************************************** */
+/* LE - / */
+/* / */
+/* ft_drawsquare.c .:: .:/ . .:: */
+/* +:+:+ +: +: +:+:+ */
+/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
+/* #+# #+ #+ #+# */
+/* Created: 2020/02/02 17:19:22 by rbousset #+# ## ## #+# */
+/* Updated: 2020/02/02 17:19:22 by rbousset ### #+. /#+ ###.fr */
+/* / */
+/* / */
+/* ************************************************************************** */
+
+#include <cub3d.h>
+#include <mlx.h>
+#include <stdint.h>
+
+void
+ ft_draw_square(int a, int b, int rgb, t_cub *clist)
+{
+ const uint16_t scale = clist->scale;
+ int x;
+ int y;
+
+ x = a;
+ y = b;
+ while (x > a - scale)
+ {
+ while (y > b - scale)
+ {
+ *(int*)(clist->img.ptr + (x * 4 + (y * clist->img.sizeline))) = rgb;
+ y--;
+ }
+ y = b;
+ x--;
+ }
+}