aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_circle.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-02-23 18:10:27 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-02-23 18:10:27 +0100
commita065577aeea93944fd8d582e720d7b01b89651b9 (patch)
treea73ad46865dfcfeef885c1f4fd635a477de8855b /src/ft_draw_circle.c
parentBetter map colors (diff)
download42-cub3d-a065577aeea93944fd8d582e720d7b01b89651b9.tar.gz
42-cub3d-a065577aeea93944fd8d582e720d7b01b89651b9.tar.bz2
42-cub3d-a065577aeea93944fd8d582e720d7b01b89651b9.tar.xz
42-cub3d-a065577aeea93944fd8d582e720d7b01b89651b9.tar.zst
42-cub3d-a065577aeea93944fd8d582e720d7b01b89651b9.zip
Preparing music
Diffstat (limited to '')
-rw-r--r--src/ft_draw_circle.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ft_draw_circle.c b/src/ft_draw_circle.c
index be95617..570543a 100644
--- a/src/ft_draw_circle.c
+++ b/src/ft_draw_circle.c
@@ -16,7 +16,7 @@
#include <math.h>
void
- ft_draw_circle(int32_t a, int32_t b, int32_t color, t_cub *cl)
+ ft_draw_circle(float a, float b, int32_t color, t_cub *cl)
{
float scale;
float i;
@@ -31,10 +31,10 @@ void
while (i < 360)
{
angle = i;
- x1 = scale * cos(angle * 3.14159 / 180);
- y1 = scale * sin(angle * 3.14159 / 180);
- *(int*)(cl->img.ptr + (a + (int)x1) * 4 +
- ((b + (int)y1) * cl->img.sizeline)) = color;
+ x1 = scale * cos(angle * 3.14159265358979323846 / 180);
+ y1 = scale * sin(angle * 3.14159265358979323846 / 180);
+ *(int*)(cl->img.ptr + ((int)a + (int)x1) * 4 +
+ (((int)b + (int)y1) * cl->img.sizeline)) = color;
i += 0.1;
}
i = 0;