diff options
Diffstat (limited to 'src/ft_draw_circle.c')
-rw-r--r-- | src/ft_draw_circle.c | 10 |
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; |